Skip to content

Commit de5e289

Browse files
committed
black
1 parent 37daf77 commit de5e289

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

tests/integration/devtools/test_callback_validation.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def check_errors(dash_duo, specs):
4848
)
4949

5050
# ensure the errors didn't leave items in the pendingCallbacks queue
51-
assert dash_duo.driver.execute_script('return document.title') == 'Dash'
51+
assert dash_duo.driver.execute_script("return document.title") == "Dash"
5252

5353

5454
def test_dvcv001_blank(dash_duo):
@@ -421,18 +421,19 @@ def h(a):
421421
"A nonexistent object was used in an `Input` of a Dash callback. "
422422
"The id of this object is `yeah-no` and the property is `value`. "
423423
"The string ids in the current layout are: "
424-
"[main, outer-div, inner-div, inner-input, outer-input]", []
424+
"[main, outer-div, inner-div, inner-input, outer-input]",
425+
[],
425426
],
426427
[
427428
"A nonexistent object was used in an `Output` of a Dash callback. "
428429
"The id of this object is `nope` and the property is `children`. "
429430
"The string ids in the current layout are: "
430-
"[main, outer-div, inner-div, inner-input, outer-input]", []
431-
]
431+
"[main, outer-div, inner-div, inner-input, outer-input]",
432+
[],
433+
],
432434
]
433435

434436

435-
436437
def test_dvcv008_wrong_callback_id(dash_duo):
437438
dash_duo.start_server(bad_id_app(), **debugging)
438439

0 commit comments

Comments
 (0)