Skip to content

[MAINT] Import only Sequence to avoid DeprecationWarning #2793

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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