Skip to content

Commit

Permalink
fix: untyped calls mypy error in wave-cli.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FritzHeiden committed Jan 21, 2025
1 parent dda2a3d commit db3eeb3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/wave/wave-cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# mypy: allow-untyped-defs
# mypy: allow-untyped-calls

import sys
import os
Expand Down Expand Up @@ -36,7 +37,7 @@
}


def main() -> None:
def main():
parameters = get_run_parameters()
# configuration_file_path = None
# if ("configuration_file_path" in parameters):
Expand Down

0 comments on commit db3eeb3

Please sign in to comment.