File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ python:
10
10
11
11
before_install :
12
12
- python -m pip install --upgrade pip
13
- - pip install " flake8<3.0" flake8-putty
13
+ - pip install flake8
14
14
15
15
script :
16
16
- flake8 fmriprep wrapper
Original file line number Diff line number Diff line change @@ -545,9 +545,12 @@ def init_spaces(checkpoint=True):
545
545
if checkpoint :
546
546
spaces .checkpoint ()
547
547
548
- internal = workflow .internal_spaces
549
- if internal is not None and internal .strip ():
550
- for ref in internal .split (' ' ):
551
- spaces .add (ref )
552
-
548
+ if workflow .internal_spaces :
549
+ internal = [
550
+ Reference .from_string (ref )
551
+ for ref in workflow .internal_spaces .strip ().split (' ' )
552
+ ]
553
+ spaces += [
554
+ ref [0 ] for ref in internal if ref [0 ].fullname not in spaces
555
+ ]
553
556
workflow .spaces = spaces
Original file line number Diff line number Diff line change @@ -103,7 +103,3 @@ parentdir_prefix =
103
103
max-line-length = 99
104
104
doctests = True
105
105
exclude =*build/
106
- putty-ignore =
107
- */__init__.py : +F401
108
- docs/conf.py : +E265
109
- /^\s*\.\. _.*?: http/ : +E501
You can’t perform that action at this time.
0 commit comments