Skip to content

Commit a96e944

Browse files
committed
Oops, some white spaces.
Oops, some white spaces.
1 parent 7c12fa0 commit a96e944

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -668,15 +668,15 @@ def _get_data_path():
668668
'directory')
669669
return path
670670

671-
_file=_decode_filesystem_path(__file__)
671+
_file = _decode_filesystem_path(__file__)
672672
path = os.sep.join([os.path.dirname(_file), 'mpl-data'])
673673
if os.path.isdir(path):
674674
return path
675675

676676
# setuptools' namespace_packages may highjack this init file
677677
# so need to try something known to be in matplotlib, not basemap
678678
import matplotlib.afm
679-
_file=_decode_filesystem_path(matplotlib.afm.__file__)
679+
_file = _decode_filesystem_path(matplotlib.afm.__file__)
680680
path = os.sep.join([os.path.dirname(_file), 'mpl-data'])
681681
if os.path.isdir(path):
682682
return path

0 commit comments

Comments
 (0)