Skip to content

Commit fdab8ef

Browse files
STY: Further simplification
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 323e7e3 commit fdab8ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nipype/interfaces/base/support.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def __exit__(self, exc_type, exc_value, exc_tb):
9999
traceback.format_exception(exc_type, exc_value, exc_tb)
100100
)
101101
# Gather up the exception arguments and append nipype info.
102-
exc_args = exc_value.args if exc_value.args else tuple()
102+
exc_args = exc_value.args or ()
103103
exc_args += (
104104
f"An exception of type {exc_type.__name__} occurred while "
105105
f"running interface {self._runtime.interface}.",

tools/checkspecs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def test_specs(self, uri):
287287
continue
288288
parent_metadata = []
289289
if "parent" in trait.__dict__:
290-
parent_metadata = list(trait.parent.__dict__.keys())
290+
parent_metadata = list(trait.parent.__dict__)
291291
if (
292292
key
293293
not in allowed_keys
@@ -375,7 +375,7 @@ def test_specs(self, uri):
375375
continue
376376
parent_metadata = []
377377
if "parent" in trait.__dict__:
378-
parent_metadata = list(trait.parent.__dict__.keys())
378+
parent_metadata = list(trait.parent.__dict__)
379379
if (
380380
key
381381
not in allowed_keys

0 commit comments

Comments
 (0)