-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply formatting and flake8 fixes (#100)
* applied black formatting * added flake8 configuration file * made repo flake8-compliant * renamed numpy to np * incremented version
- Loading branch information
Showing
66 changed files
with
4,853 additions
and
4,620 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,17 @@ | ||
[flake8] | ||
ignore = E203, E266, E501, W503, E302 | ||
max-line-length = 120 | ||
select = B,C,E,F,W,T4,B9 | ||
exclude = | ||
# No need to traverse the git directory | ||
.git, | ||
# There's no value in checking cache directories | ||
__pycache__, | ||
# The conf file is mostly autogenerated, ignore it | ||
doc/conf.py, | ||
# No need for init and setup files | ||
*__init__.py | ||
*setup.py | ||
# OptView and related files need to be fixed eventually | ||
postprocessing/OptView.py | ||
postprocessing/OptView_baseclass.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
Oops, something went wrong.