Skip to content

Commit

Permalink
Remove unnecessary variable (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
bachya authored Jan 19, 2024
1 parent 9ff6994 commit e64abf1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ecowitt2mqtt/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,5 @@ def main() -> None:
"""Run."""
cli_arguments = get_cli_arguments(sys.argv[1:])
env_vars = get_env_vars()
params: dict[str, Any] = env_vars | cli_arguments
ecowitt = Ecowitt(params)
ecowitt = Ecowitt(env_vars | cli_arguments)
uvloop.run(ecowitt.async_start())

0 comments on commit e64abf1

Please sign in to comment.