Skip to content

Commit 3ba5af7

Browse files
committed
Merge branch '1383-callback-args-fix' of github.com:plotly/dash into 1383-callback-args-fix
2 parents 2669aa9 + 45ef078 commit 3ba5af7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dash/dash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def __init__(
333333
"via the Dash constructor"
334334
)
335335

336-
# keep title as a class property for backwards compatability
336+
# keep title as a class property for backwards compatibility
337337
self.title = title
338338

339339
# list of dependencies - this one is used by the back end for dispatching

dash/dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def handle_callback_args(args, kwargs):
170170
out0 = kwargs.get("output", args[0] if args else None)
171171
if not isinstance(out0, (list, tuple)):
172172
# unless it was explicitly provided as a list, a single output
173-
# sholuld be unwrapped. That ensures the return value of the
173+
# should be unwrapped. That ensures the return value of the
174174
# callback is also not expected to be wrapped in a list.
175175
outputs = outputs[0]
176176

dash/testing/browser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def get_logs(self):
530530
return None
531531

532532
def reset_log_timestamp(self):
533-
"""reset_log_timestamp only work with chrome webdrier."""
533+
"""reset_log_timestamp only work with chrome webdriver."""
534534
if self.driver.name.lower() == "chrome":
535535
entries = self.driver.get_log("browser")
536536
if entries:

0 commit comments

Comments
 (0)