Skip to content

Commit b1dbbd3

Browse files
committed
Fix tooling for new versions
1 parent a4dd579 commit b1dbbd3

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

setup.cfg

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,14 @@ ignore_missing_imports = True
3333

3434
[flake8]
3535
ignore =
36-
E501, # max line length
37-
W503, # line break before binary operator; fights with black
36+
# max line length
37+
E501,
38+
# multiple statements on one line (def); fights with black
39+
E704,
40+
# line break before binary operator; fights with black
41+
W503,
3842

3943
[coverage:run]
4044
include =
41-
sql_athame/**py
42-
tests/**py
45+
sql_athame/**/*.py
46+
tests/**/*.py

0 commit comments

Comments
 (0)