Skip to content

Commit c634cf5

Browse files
committed
lint
1 parent 1edb877 commit c634cf5

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

components/dash-core-components/tests/integration/dropdown/test_clearable_false.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,15 +191,11 @@ def update_value(val):
191191
# Attempt to deselect all items. Everything should deselect until we get to
192192
# the last item which cannot be cleared.
193193
# Click MTL option container
194-
mtl_option = dash_duo.find_element(
195-
'.dash-dropdown-option:has(input[value="MTL"])'
196-
)
194+
mtl_option = dash_duo.find_element('.dash-dropdown-option:has(input[value="MTL"])')
197195
mtl_option.click()
198196

199197
# Click SF option container
200-
sf_option = dash_duo.find_element(
201-
'.dash-dropdown-option:has(input[value="SF"])'
202-
)
198+
sf_option = dash_duo.find_element('.dash-dropdown-option:has(input[value="SF"])')
203199
sf_option.click()
204200

205201
assert dash_duo.find_element("#dropdown-value").text == "SF"

0 commit comments

Comments
 (0)