-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from OceanParcels/fixes_evs
Updates to repository
- Loading branch information
Showing
24 changed files
with
723 additions
and
782 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,12 @@ | ||
[flake8] | ||
ignore = | ||
# missing whitespace around arithmetic operator | ||
E226, | ||
# do not use bare except, specify exception instead | ||
E722, | ||
# line break before binary operator | ||
W503, | ||
# line too long (82 > 79 characters) | ||
E501, | ||
# ‘from module import *’ used; unable to detect undefined names | ||
F403, |
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 |
---|---|---|
|
@@ -5,3 +5,5 @@ PlasticParcels/src/ | |
**.code-workspace* | ||
**.DS_store** | ||
**.pyc** | ||
**.nc | ||
**.zarr |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from plasticparcels.utils import * # noqa | ||
from plasticparcels.constructors import * # noqa | ||
from plasticparcels.particlefile import * # noqa |
Oops, something went wrong.