Skip to content

Commit 82e5759

Browse files
authored
formatting
1 parent b83c5ad commit 82e5759

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/test_optional/test_autoshapes/test_annotated_shapes.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -437,9 +437,7 @@ def test_all_annotation_positions():
437437
def test_vline_datetime_string_annotation():
438438
"""add_vline with annotation_text on datetime x-axis should not crash."""
439439
fig = go.Figure()
440-
fig.add_trace(
441-
go.Scatter(x=["2018-01-01", "2018-06-01", "2018-12-31"], y=[1, 2, 3])
442-
)
440+
fig.add_trace(go.Scatter(x=["2018-01-01", "2018-06-01", "2018-12-31"], y=[1, 2, 3]))
443441
fig.add_vline(x="2018-09-24", annotation_text="test")
444442
assert len(fig.layout.annotations) == 1
445443
assert fig.layout.annotations[0].text == "test"

0 commit comments

Comments
 (0)