Skip to content

Commit cf81e88

Browse files
committed
Merge pull request #104 from Eric89GXL/peps
FIX: PEP8
2 parents ff005a2 + 55fd4c7 commit cf81e88

18 files changed

+49
-41
lines changed

examples/plot_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Initialize a basic visualization session.
66
77
"""
8-
print __doc__
8+
print(__doc__)
99

1010
from surfer import Brain
1111

examples/plot_fmri_activation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
"""
1111

12-
print __doc__
12+
print(__doc__)
1313

1414
from surfer import Brain
1515

examples/plot_fmri_activation_volume.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
"""
1515

16-
print __doc__
16+
print(__doc__)
1717

1818
import os
1919
from surfer import Brain, project_volume_data

examples/plot_fmri_conjunction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
"""
1313

14-
print __doc__
14+
print(__doc__)
1515

1616
import os.path as op
1717
import numpy as np

examples/plot_foci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
according to coordinates or vertex ids.
88
99
"""
10-
print __doc__
10+
print(__doc__)
1111

1212
import os
1313
import os.path as op

examples/plot_label.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
with a large amount of control over the visual representation.
77
88
"""
9-
print __doc__
9+
print(__doc__)
1010

1111
import os
1212
from surfer import Brain

examples/plot_label_foci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
that label and the focus that defines its center.
88
99
"""
10-
print __doc__
10+
print(__doc__)
1111

1212
from surfer import Brain, utils
1313

examples/plot_meg_inverse_solution.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Data were computed using mne-python (http://martinos.org/mne)
66
77
"""
8-
print __doc__
8+
print(__doc__)
99

1010
import os
1111
import numpy as np
@@ -68,5 +68,5 @@
6868
"""
6969
uncomment these lines to use the interactive TimeViewer GUI
7070
"""
71-
#from surfer import TimeViewer
72-
#viewer = TimeViewer(brain)
71+
# from surfer import TimeViewer
72+
# viewer = TimeViewer(brain)

examples/plot_morphometry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
"""
99

10-
print __doc__
10+
print(__doc__)
1111

1212
from surfer import Brain
1313

examples/plot_parc_values.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
quickly summarize the analysis.
99
1010
"""
11-
print __doc__
11+
print(__doc__)
1212

1313
import os
1414
import numpy as np

0 commit comments

Comments
 (0)