Skip to content

Commit

Permalink
Merge pull request #550 from py-mine/update-dependencies
Browse files Browse the repository at this point in the history
Update and unpin some dependencies
  • Loading branch information
kevinkjt2000 authored May 25, 2023
2 parents bf8c1b5 + 7e93842 commit d801050
Show file tree
Hide file tree
Showing 5 changed files with 572 additions and 592 deletions.
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

0 comments on commit d801050

Please sign in to comment.