Skip to content

Commit c15dd7b

Browse files
committed
make black happy
1 parent c378cde commit c15dd7b

File tree

1 file changed

+3
-4
lines changed
  • packages/python/plotly/plotly/tests/test_core/test_px

1 file changed

+3
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import plotly.express as px
22
import numpy as np
33

4+
45
def test_scatter():
56
iris = px.data.iris()
67
fig = px.scatter(iris, x="sepal_width", y="sepal_length")
7-
assert fig.data[0].type == 'scatter'
8+
assert fig.data[0].type == "scatter"
89
assert np.all(fig.data[0].x == iris.sepal_width)
910
assert np.all(fig.data[0].y == iris.sepal_length)
1011
# test defaults
11-
assert fig.data[0].mode == 'markers'
12-
13-
12+
assert fig.data[0].mode == "markers"

0 commit comments

Comments
 (0)