8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c12fa0 commit a96e944Copy full SHA for a96e944
lib/matplotlib/__init__.py
@@ -668,15 +668,15 @@ def _get_data_path():
668
'directory')
669
return path
670
671
- _file=_decode_filesystem_path(__file__)
+ _file = _decode_filesystem_path(__file__)
672
path = os.sep.join([os.path.dirname(_file), 'mpl-data'])
673
if os.path.isdir(path):
674
675
676
# setuptools' namespace_packages may highjack this init file
677
# so need to try something known to be in matplotlib, not basemap
678
import matplotlib.afm
679
- _file=_decode_filesystem_path(matplotlib.afm.__file__)
+ _file = _decode_filesystem_path(matplotlib.afm.__file__)
680
681
682
0 commit comments