Skip to content

Commit 966b4d9

Browse files
author
Ben Cipollini
committed
Remove filterwarnings('always', UserWarning)--this is the default.
1 parent 4957ad1 commit 966b4d9

File tree

9 files changed

+0
-9
lines changed

9 files changed

+0
-9
lines changed

nipype/interfaces/afni/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
CommandLine, traits, CommandLineInputSpec, isdefined, File, TraitedSpec)
1313

1414
warn = warnings.warn
15-
warnings.filterwarnings('always', category=UserWarning)
1615

1716

1817
class Info(object):

nipype/interfaces/afni/preprocess.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
from ...utils.filemanip import fname_presuffix
2222

2323
warn = warnings.warn
24-
warnings.filterwarnings('always', category=UserWarning)
2524

2625

2726
class To3DInputSpec(AFNICommandInputSpec):

nipype/interfaces/afni/svm.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
OutputMultiPath
2424

2525
warn = warnings.warn
26-
warnings.filterwarnings('always', category=UserWarning)
2726

2827
class SVMTrainInputSpec(AFNICommandInputSpec):
2928
#training options

nipype/interfaces/fsl/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
File, Directory, InputMultiPath, OutputMultiPath)
3737

3838
warn = warnings.warn
39-
warnings.filterwarnings('always', category=UserWarning)
4039

4140

4241
class Info(object):

nipype/interfaces/fsl/dti.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from ...utils.filemanip import fname_presuffix, split_filename, copyfile
2525

2626
warn = warnings.warn
27-
warnings.filterwarnings('always', category=UserWarning)
2827

2928

3029
class DTIFitInputSpec(FSLCommandInputSpec):

nipype/interfaces/fsl/epi.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
fname_presuffix)
2727

2828
warn = warnings.warn
29-
warnings.filterwarnings('always', category=UserWarning)
3029

3130

3231
class PrepareFieldmapInputSpec(FSLCommandInputSpec):

nipype/interfaces/fsl/model.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
from ...utils.misc import human_order_sorted
3333

3434
warn = warnings.warn
35-
warnings.filterwarnings('always', category=UserWarning)
3635

3736

3837
class Level1DesignInputSpec(BaseInterfaceInputSpec):

nipype/interfaces/fsl/preprocess.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
from ...utils.filemanip import split_filename
3131

3232
warn = warnings.warn
33-
warnings.filterwarnings('always', category=UserWarning)
3433

3534

3635
class BETInputSpec(FSLCommandInputSpec):

nipype/interfaces/fsl/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
fname_presuffix, copyfile)
3434

3535
warn = warnings.warn
36-
warnings.filterwarnings('always', category=UserWarning)
3736

3837

3938
class CopyGeomInputSpec(FSLCommandInputSpec):

0 commit comments

Comments
 (0)