Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ lint.extend-ignore = [
"__init__.py" = [
"F401" # unused-import
]
"djangogirls/settings.py" = [
"PLW1508" # Checks for os.getenv calls with invalid default values
]
"djangogirls/urls.py" = [
"RUF005" # Consider iterable unpacking instead of concatenation
]
Expand Down
3 changes: 1 addition & 2 deletions tests/mocks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# flake8: noqa
from .slack import *
from .slack import * # noqa: F403