Skip to content

Commit 34a7bdf

Browse files
committed
[STY] Fixed style errors
1 parent 16d9a17 commit 34a7bdf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

netneurotools/plotting.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from mpl_toolkits.mplot3d import Axes3D # noqa
1212
import nibabel as nib
1313
import numpy as np
14-
from scipy.stats import zscore
1514

1615
from .freesurfer import FSIGNORE, _decode_list
1716

@@ -792,7 +791,7 @@ def plot_point_brain(data, coords, views=None, cbar=False, figsize=(4, 4.8),
792791
scaling = np.array([ax.get_xlim(),
793792
ax.get_ylim(),
794793
ax.get_zlim()])
795-
ax.auto_scale_xyz(*[[np.min(scaling), np.max(scaling)]]*3)
794+
ax.auto_scale_xyz(*[[np.min(scaling), np.max(scaling)]] * 3)
796795
fig.subplots_adjust(left=0, right=1, bottom=0, top=1)
797796

798797
# add colorbar to axes

0 commit comments

Comments
 (0)