Skip to content

Commit 835621d

Browse files
committed
Update the "flake8" style guide rules
1 parent 3bd73c8 commit 835621d

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

examples/setup.cfg

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[flake8]
2-
# W503,W504 (line break before or after binary operators)
2+
# W503 (line break before binary operator) can be ignored.
33
exclude=recordings,temp
4-
ignore=W503,W504
4+
ignore=W503
55

66
[nosetests]
7-
# nocapture=1 displays print statements from output. Undo this by using: --nologcapture
8-
# logging-level=INFO keeps the logs much cleaner than using DEBUG
7+
# nocapture=1 (Display print statements from output)
8+
# (Undo this by using: "--nologcapture")
9+
# logging-level=INFO (Shorter logs than using DEBUG)
910
nocapture=1
1011
logging-level=INFO
1112

setup.cfg

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[flake8]
2-
# W503,W504 (line break before or after binary operators)
2+
# W503 (line break before binary operator) can be ignored.
33
exclude=recordings,temp
4-
ignore=W503,W504
4+
ignore=W503
55

66
[nosetests]
7-
# nocapture=1 displays print statements from output. Undo this by using: --nologcapture
8-
# logging-level=INFO keeps the logs much cleaner than using DEBUG
7+
# nocapture=1 (Display print statements from output)
8+
# (Undo this by using: "--nologcapture")
9+
# logging-level=INFO (Shorter logs than using DEBUG)
910
nocapture=1
1011
logging-level=INFO
1112

0 commit comments

Comments
 (0)