-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge refactored code into dev branch
Based on #251
- Loading branch information
Showing
159 changed files
with
24,890 additions
and
19,716 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
# OS-specific files | ||
.DS_Store | ||
desktop.ini | ||
Thumbs.db | ||
|
||
# Development aids | ||
.idea/ | ||
.eggs | ||
__pycache__ | ||
.*.swp | ||
*.egg-info | ||
*.pyc | ||
build | ||
data | ||
dist | ||
.vscode/ | ||
temp/ | ||
venv/ | ||
.venv/ | ||
desktop.ini | ||
thumbs.db | ||
temp/ | ||
|
||
# Build/compile/release artifacts | ||
build/ | ||
dist/ | ||
*.egg-info | ||
*.pyc | ||
|
||
# Other temporary files | ||
__pycache__ | ||
.*.swp |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/zsh | ||
|
||
autoflake -i --remove-all-unused-imports src/wireviz/*.py | ||
isort src/wireviz/*py | ||
black src/wireviz/*.py |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# The following tools have proven useful during development | ||
# Feel free to install while inside the WireViz virtualenv, using: | ||
# pip install -r devtools.txt | ||
|
||
# Code formatting | ||
black # black src/wireviz/*.py | ||
isort # isort src/wireviz/*py | ||
|
||
# Development aids | ||
pudb # import pudb; pudb.set_trace() | ||
autoflake # autoflake -i --remove-all-unused-imports src/wireviz/*.py | ||
pyan # pyan3 src/wireviz/*.py -uncge --html > temp/pyan.html |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.