-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optionally compact cidr ranges to make file sizes smaller
This closes #8 by implementing a method for getting compacted ranges. Combining the results of the 4 cloud providers herein, we see an order of magnitude in line count reduction.
- Loading branch information
Showing
6 changed files
with
146 additions
and
99 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[flake8] | ||
# W503 - line break before binary operator | ||
# E402 - module level import not at top of file | ||
# E203 - whitespace before ':' | ||
|
||
ignore = E402, W503, E203 | ||
max-line-length = 160 | ||
exclude = | ||
# Ignore contents of pycache directories | ||
__pycache__, | ||
# Ignore dependencies in virtual environments | ||
venv, | ||
.venv |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.