8000 Stay within allowed line length · matplotlib/matplotlib@bcaafca · GitHub
[go: up one dir, main page]

Skip to content

Commit bcaafca

Browse files
committed
Stay within allowed line length
1 parent 6657540 commit bcaafca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/matplotlib/type1font.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,10 @@ def fontname(name):
251251
return result
252252

253253
def italicangle(angle):
254-
return b'%a' % round(float(angle) - np.arctan(slant) / np.pi * 180, 5)
254+
return b'%a' % round(
255+
float(angle) - np.arctan(slant) / np.pi * 180,
256+
5
257+
)
255258

256259
def fontmatrix(array):
257260
array = array.lstrip(b'[').rstrip(b']').split()

0 commit comments

Comments
 (0)
0