From ff1d7e5201ed0e6df0f7bf4e8185fa1683ac3d79 Mon Sep 17 00:00:00 2001 From: rbwo552 Date: Tue, 13 Aug 2024 14:28:00 +0900 Subject: [PATCH] =?UTF-8?q?admin=20mypy=20=EC=88=98=EC=A0=95=20=EB=B0=8F?= =?UTF-8?q?=20ci=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 6 +----- customk/users/admin.py | 4 ++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f879fdb..1af60af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,12 +20,8 @@ jobs: - name: package install run: poetry install - - name: Run Luff + - name: Run Lint && Type Check run: | cd customk poetry run ruff check . - - - name: Run Mypy - run: | - cd customk poetry run mypy . \ No newline at end of file diff --git a/customk/users/admin.py b/customk/users/admin.py index afeec1d..e3f4215 100644 --- a/customk/users/admin.py +++ b/customk/users/admin.py @@ -4,5 +4,5 @@ @admin.register(User) -class UserAdmin(admin.ModelAdmin): - pass +class UserAdmin(admin.ModelAdmin): # type: ignore + pass