-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Format imports and lines with https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter Add pragmas for new lines. Expected to **decrease coverage** by a few percent because of the better looking lines ;)
- Loading branch information
1 parent
2d3adc5
commit 4c7954a
Showing
10 changed files
with
741 additions
and
587 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,29 @@ | ||
version: 1 | ||
--- | ||
formatters: | ||
simple: | ||
format: "%(asctime)s %(levelname)s %(message)s" | ||
datefmt: "%H:%M:%S" | ||
full: | ||
format: "%(asctime)s,%(msecs)d %(levelname)s[%(filename)s:%(lineno)d] %(message)s" | ||
datefmt: "%Y-%m-%d %H:%M:%S" | ||
datefmt: '%Y-%m-%d %H:%M:%S' | ||
format: '%(asctime)s,%(msecs)d %(levelname)s[%(filename)s:%(lineno)d] %(message)s' | ||
simple: | ||
datefmt: '%H:%M:%S' | ||
format: '%(asctime)s %(levelname)s %(message)s' | ||
handlers: | ||
console: | ||
class: logging.StreamHandler | ||
level: WARNING | ||
formatter: full | ||
level: WARNING | ||
stream: ext://sys.stdout | ||
loggers: | ||
visualization.py: | ||
level: NOTSET | ||
|
||
svgjoin.py: | ||
construct_dpdb_visu.py: | ||
level: NOTSET | ||
|
||
reader.py: | ||
level: NOTSET | ||
|
||
construct_dpdb_visu.py: | ||
svgjoin.py: | ||
level: NOTSET | ||
|
||
utilities.py: | ||
level: NOTSET | ||
|
||
visualization.py: | ||
level: NOTSET | ||
root: | ||
level: WARNING | ||
handlers: [console] | ||
level: WARNING | ||
version: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.