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

Skip to content

Commit 14a8da6

Browse files
committed
Pep8 fix
1 parent e32ace4 commit 14a8da6

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
@@ -2022,7 +2022,8 @@ def draw_text_woven(chunks):
20222022
else:
20232023
kern = 0
20242024
lastgind = gind
2025-
newx += -kern/64.0 + glyph.linearHoriAdvance/65536.0
2025+
newx += (-kern/64.0 +
2026+
glyph.linearHoriAdvance/65536.0)
20262027

20272028
if mode == 1:
20282029
self.file.output(Op.end_text)

0 commit comments

Comments
 (0)