Skip to content

Commit

Permalink
Update flake8 ignores
Browse files Browse the repository at this point in the history
Signed-off-by: Shah, Karan <[email protected]>
  • Loading branch information
MasterSkepticista committed Jun 3, 2024
1 parent f23f7a1 commit 087c667
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[flake8]

# W503 Line break occurred before a binary operator. Update by W504 Line
# break occurred after a binary operator
# N812: lowercase imported as non lowercase. Allow "import torch.nn.functional as F"
ignore = W503, N812
ignore =
# Conflicts with black
E203
# Line break occurred before a binary operator. Update by W504 Line
W503
# Allow "import torch.nn.functional as F"
N812
select = E,F,W,N,C4,C90,C801
inline-quotes = '
multiline-quotes = '
Expand Down

0 comments on commit 087c667

Please sign in to comment.