Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f394b0b

Browse files
committed
fix linting errors
1 parent 29cdff1 commit f394b0b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,8 +1200,9 @@ def is_interactive():
12001200
def _init_tests():
12011201
# The version of FreeType to install locally for running the
12021202
# 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'
1203+
win_arm64 = sys.platform.startswith('win') and \
1204+
platform.machine() == 'ARM64'
1205+
LOCAL_FREETYPE_VERSION = '2.11.1' if win_arm64 else '2.6.1'
12051206

12061207
from matplotlib import ft2font
12071208
if (ft2font.__freetype_version__ != LOCAL_FREETYPE_VERSION or

0 commit comments

Comments
 (0)