-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use black and isort to autoformat the main package (#266)
* Add linting job. * Run black and isort. * Keep working on formatting. * Forgot to install the linters... * Wrong code path. * Address style issues in cubids. * Address style issues in validator. * Update metadata_merge.py
- Loading branch information
Showing
12 changed files
with
1,573 additions
and
1,216 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,7 +1,11 @@ | ||
"""Top-level package for CuBIDS.""" | ||
|
||
__author__ = """PennLINC""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.1.0' | ||
__email__ = "[email protected]" | ||
__version__ = "0.1.0" | ||
|
||
from .cubids import CuBIDS | ||
from cubids.cubids import CuBIDS | ||
|
||
__all__ = [ | ||
"CuBIDS", | ||
] |
Oops, something went wrong.