8000 Try to satisfy the style checker · matplotlib/matplotlib@f7d8162 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f7d8162

Browse files
committed
Try to satisfy the style checker
1 parent e76763b commit f7d8162

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/backends/backend_pdf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,8 @@ def embedTTFType42(font, characters, descriptor):
10401040
for c in characters:
10411041
ccode = c
10421042
gind = font.get_char_index(ccode)
1043-
glyph = font.load_char(ccode, flags=LOAD_NO_SCALE|LOAD_NO_HINTING)
1043+
glyph = font.load_char(ccode,
1044+
flags=LOAD_NO_SCALE | LOAD_NO_HINTING)
10441045
widths.append((ccode, cvt(glyph.horiAdvance)))
10451046
if ccode < 65536:
10461047
cid_to_gid_map[ccode] = unichr(gind)

0 commit comments

Comments
 (0)
0