Skip to content

Commit fc51e76

Browse files
committed
PEP8
1 parent 5d98758 commit fc51e76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nibabel/streamlines/tractogram.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ def extend(self, other):
138138
-----
139139
The keys in both dictionaries must be the same.
140140
"""
141-
if (len(self) > 0 and len(other) > 0
142-
and sorted(self.keys()) != sorted(other.keys())):
141+
if (len(self) > 0 and len(other) > 0 and
142+
sorted(self.keys()) != sorted(other.keys())):
143143
msg = ("Entry mismatched between the two PerArrayDict objects."
144144
" This PerArrayDict contains '{0}' whereas the other "
145145
" contains '{1}'.").format(sorted(self.keys()),

0 commit comments

Comments
 (0)