Skip to content

Commit c0b7e5b

Browse files
committed
black
1 parent cbbe759 commit c0b7e5b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/percy/plotly-express.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,11 @@
343343

344344
import plotly.express as px
345345
import numpy as np
346-
img_rgb = np.array([[[255, 0, 0], [0, 255, 0], [0, 0, 255]],
347-
[[0, 255, 0], [0, 0, 255], [255, 0, 0]]
348-
], dtype=np.uint8)
346+
347+
img_rgb = np.array(
348+
[[[255, 0, 0], [0, 255, 0], [0, 0, 255]], [[0, 255, 0], [0, 0, 255], [255, 0, 0]]],
349+
dtype=np.uint8,
350+
)
349351
fig = px.imshow(img_rgb)
350352
fig.write_html(os.path.join(dir_name, "imshow.html"))
351353

0 commit comments

Comments
 (0)