Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nipype/interfaces/base/traits_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

from builtins import str, bytes
import os
import collections
from collections import Sequence

# perform all external trait imports here
from traits import __version__ as traits_version
Expand Down Expand Up @@ -323,7 +323,7 @@ def validate(self, object, name, value):

# want to treat range and other sequences (except str) as list
if not isinstance(value, (str, bytes)) and isinstance(
value, collections.Sequence):
value, Sequence):
value = list(value)

if not isdefined(value) or \
Expand Down