Skip to content

Commit dd004a5

Browse files
committed
STY: Black
1 parent 6adbb47 commit dd004a5

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

nipype/info.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -160,14 +160,7 @@ def get_nipype_gitversion():
160160
# https://github.com/nipy/nipype/pull/2961#issuecomment-512035484
161161
REQUIRES += ["neurdflib"]
162162

163-
TESTS_REQUIRES = [
164-
"codecov",
165-
"coverage<5",
166-
"mock",
167-
"pytest",
168-
"pytest-cov",
169-
"pytest-env",
170-
]
163+
TESTS_REQUIRES = ["codecov", "coverage<5", "mock", "pytest", "pytest-cov", "pytest-env"]
171164

172165
EXTRA_REQUIRES = {
173166
"data": ["datalad"],

nipype/utils/config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ def __init__(self, *args, **kwargs):
9191
self._config = configparser.ConfigParser()
9292
self._cwd = None
9393

94-
config_dir = os.path.expanduser(os.getenv("NIPYPE_CONFIG_DIR", default="~/.nipype"))
94+
config_dir = os.path.expanduser(
95+
os.getenv("NIPYPE_CONFIG_DIR", default="~/.nipype")
96+
)
9597
self.data_file = os.path.join(config_dir, "nipype.json")
9698

9799
self.set_default_config()

0 commit comments

Comments
 (0)