Skip to content

Commit

Permalink
[resotolib][feat] Support extra args to the webserver
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche committed Oct 2, 2023
1 parent 7a91925 commit 6cc9d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resotolib/resotolib/web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(
web_port: int = 9955,
ssl_cert: Optional[str] = None,
ssl_key: Optional[str] = None,
extra_config: Optional[dict] = None,
extra_config: Optional[dict[str, Any]] = None,
) -> None:
super().__init__()
self.name = "webserver"
Expand Down

0 comments on commit 6cc9d92

Please sign in to comment.