Skip to content
Snippets Groups Projects
Commit e6a4d1f8 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

RF: Avoid warnings

parent a5d02f56
No related branches found
No related tags found
No related merge requests found
...@@ -119,12 +119,12 @@ def enabled(): ...@@ -119,12 +119,12 @@ def enabled():
""" """
cmd = 'dcm2niix -h' cmd = 'dcm2niix -h'
versionPattern = re.compile('v' versionPattern = re.compile(r'v'
'(?P<major>[0-9]+)\.' '(?P<major>[0-9]+)\.'
'(?P<minor>[0-9]+)\.' '(?P<minor>[0-9]+)\.'
'(?P<year>[0-9]{4})' '(?P<year>[0-9]{4})'
'(?P<month>[0-9]{2})' '(?P<month>[0-9]{2})'
'(?P<day>[0-9]{2})') '(?P<day>[0-9]{2})')
try: try:
output = sp.check_output(cmd.split()).decode() output = sp.check_output(cmd.split()).decode()
......
...@@ -85,7 +85,7 @@ import atexit ...@@ -85,7 +85,7 @@ import atexit
import logging import logging
import functools import functools
import threading import threading
import collections import collections.abc as abc
try: import queue try: import queue
except ImportError: import Queue as queue except ImportError: import Queue as queue
...@@ -586,7 +586,7 @@ def wait(threads, task, *args, **kwargs): ...@@ -586,7 +586,7 @@ def wait(threads, task, *args, **kwargs):
direct = kwargs.pop('wait_direct', False) direct = kwargs.pop('wait_direct', False)
if not isinstance(threads, collections.Sequence): if not isinstance(threads, abc.Sequence):
threads = [threads] threads = [threads]
haveWX = fslplatform.haveGui haveWX = fslplatform.haveGui
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment