Thanks to visit codestin.com Credit goes to github.com
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 29cdff1 commit f394b0bCopy full SHA for f394b0b
lib/matplotlib/__init__.py
@@ -1200,8 +1200,9 @@ def is_interactive():
1200
def _init_tests():
1201
# The version of FreeType to install locally for running the
1202
# tests. This must match the value in `setupext.py`
1203
- win_arm64 = sys.platform.startswith('win') and platform.machine() == 'ARM64'
1204
- LOCAL_FREETYPE_VERSION = '2.11.1' if win_arm64 else '2.6.1'
+ win_arm64 = sys.platform.startswith('win') and \
+ platform.machine() == 'ARM64'
1205
+ LOCAL_FREETYPE_VERSION = '2.11.1' if win_arm64 else '2.6.1'
1206
1207
from matplotlib import ft2font
1208
if (ft2font.__freetype_version__ != LOCAL_FREETYPE_VERSION or
0 commit comments