Skip to content

Commit 5e1786b

Browse files
committed
chore: assign None to host, port, proxy parameters
1 parent 6353ae7 commit 5e1786b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dash/dash.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1981,9 +1981,9 @@ def delete_resource(resources):
19811981

19821982
def run(
19831983
self,
1984-
host=os.getenv("HOST", "127.0.0.1"),
1985-
port=os.getenv("PORT", "8050"),
1986-
proxy=os.getenv("DASH_PROXY", None),
1984+
host=None,
1985+
port=None,
1986+
proxy=None,
19871987
debug=None,
19881988
jupyter_mode: JupyterDisplayMode = None,
19891989
jupyter_width="100%",

0 commit comments

Comments
 (0)