Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update and unpin some dependencies #550

Merged
merged 3 commits into from
May 25, 2023
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
18 changes: 12 additions & 6 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@ extend-ignore=E203
ban-relative-imports=true
exclude=.venv,.git,.cache,.tox
ignore=
ANN002, # *args annotation
ANN003, # **kwargs annotation
ANN101, # self param annotation
ANN102, # cls param annotation
ANN204, # return type annotation for special methods
B024, # ABC class without any abstractmethods
# *args annotation
ANN002,
# **kwargs annotation
ANN003,
# self param annotation
ANN101,
# cls param annotation
ANN102,
# return type annotation for special methods
ANN204,
# ABC class without any abstractmethods
B024,
per-file-ignores=test_*.py:ANN
Loading