Skip to content

Commit 4e95d22

Browse files
committed
black
1 parent 12d002a commit 4e95d22

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

dash/dash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2049,7 +2049,7 @@ def run_server(
20492049
dev_tools_prune_errors=None,
20502050
**flask_run_options,
20512051
):
2052-
"""`run_server` is a deprecated alias of `run` and may be
2052+
"""`run_server` is a deprecated alias of `run` and may be
20532053
removed in Dash 3.0. We recommend using `app.run` instead.
20542054
See app.run for the docstring for these arguments.
20552055
"""

tests/unit/test_configs.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,9 +355,7 @@ def test_proxy_failure(mocker, empty_environ):
355355
assert "you must use host: 0.0.0.0" in excinfo.exconly()
356356

357357
with pytest.raises(_exc.ProxyError) as excinfo:
358-
app.run(
359-
proxy="http://0.0.0.0:8155::http://plot.ly", host="0.0.0.0", port=8055
360-
)
358+
app.run(proxy="http://0.0.0.0:8155::http://plot.ly", host="0.0.0.0", port=8055)
361359
assert "port: 8055 is incompatible with the proxy" in excinfo.exconly()
362360
assert "you must use port: 8155" in excinfo.exconly()
363361

0 commit comments

Comments
 (0)