Skip to content

Commit

Permalink
admin mypy 수정 및 ci 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
im-niber committed Aug 13, 2024
1 parent caf8dbe commit ff1d7e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
4 changes: 2 additions & 2 deletions customk/users/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@


@admin.register(User)
class UserAdmin(admin.ModelAdmin):
pass
class UserAdmin(admin.ModelAdmin): # type: ignore
pass

0 comments on commit ff1d7e5

Please sign in to comment.