Skip to content

Commit 58d8f5c

Browse files
committed
Reduced size of long line
1 parent 4fa79f1 commit 58d8f5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/matplotlib/tests/test_sankey.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ def test_format_using_callable():
1818
def show_three_decimal_places(value):
1919
return f'{value:.3f}'
2020

21-
s = Sankey(flows=[0.25], labels=['First'], orientations=[-1], format=show_three_decimal_places)
21+
s = Sankey(flows=[0.25], labels=['First'], orientations=[-1],
22+
format=show_three_decimal_places)
23+
2224
assert s.diagrams[0].texts[0].get_text() == 'First\n0.250'

0 commit comments

Comments
 (0)