Skip to content

Commit

Permalink
fix: str port
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Nov 6, 2024
1 parent f6b749f commit 3b1614d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape_node/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def __init__(
if hostname is not None:
kwargs_ctor["rpc_addr"] = hostname
if port is not None:
kwargs_ctor["port"] = port
kwargs_ctor["port"] = f"{port}"
if ws_hostname:
kwargs_ctor["ws_enabled"] = True
kwargs_ctor["ws_addr"] = ws_hostname
Expand Down

0 comments on commit 3b1614d

Please sign in to comment.