File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
[flake8]
2
- # W503,W504 (line break before or after binary operators)
2
+ # W503 (line break before binary operator) can be ignored.
3
3
exclude =recordings,temp
4
- ignore =W503,W504
4
+ ignore =W503
5
5
6
6
[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)
9
10
nocapture =1
10
11
logging-level =INFO
11
12
Original file line number Diff line number Diff line change 1
1
[flake8]
2
- # W503,W504 (line break before or after binary operators)
2
+ # W503 (line break before binary operator) can be ignored.
3
3
exclude =recordings,temp
4
- ignore =W503,W504
4
+ ignore =W503
5
5
6
6
[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)
9
10
nocapture =1
10
11
logging-level =INFO
11
12
You can’t perform that action at this time.
0 commit comments