Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit e4661c0

Browse files
byronbyronz
authored andcommitted
🎨 fix lint
1 parent 695155a commit e4661c0

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

tests/integration/misc/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,4 +226,4 @@ def platter_app():
226226
]
227227
)
228228

229-
yield app
229+
yield app

tests/integration/misc/test_platter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_mspl001_dcc_components_platter(platter_app, dash_duo):
3030
# for issue with datepicker when date value is `None`
3131

3232
def reset_input(elem):
33-
elem.send_keys(len(elem.get_attribute("value"))* Keys.BACKSPACE)
33+
elem.send_keys(len(elem.get_attribute("value")) * Keys.BACKSPACE)
3434
elem.send_keys("1997-05-03")
3535

3636
dt_input_1 = dash_duo.find_element("#dt-single-no-date-value #date")
@@ -72,4 +72,4 @@ def reset_input(elem):
7272
"when neither start date nor end date is specified, "
7373
"but initial month is"
7474
)
75-
reset_input(dt_input_4)
75+
reset_input(dt_input_4)

tests/test_integration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,6 @@ def test_vertical_range_slider(self):
584584
for entry in self.get_log():
585585
raise Exception('browser error logged during test', entry)
586586

587-
588587
def test_tabs_in_vertical_mode(self):
589588
app = dash.Dash(__name__)
590589

0 commit comments

Comments
 (0)