Skip to content

Commit

Permalink
Fix Python file format
Browse files Browse the repository at this point in the history
  • Loading branch information
filippomc committed Jul 30, 2024
1 parent 5708c40 commit 993b04a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/deployment-cli-tools/ch_cli_tools/openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ def generate_python_client(module, openapi_file, client_src_path, lib_name=LIB_N

def generate_ts_client(openapi_file):
get_dependencies()
out_dir = f"{os.path.dirname(
os.path.dirname(openapi_file))}/frontend/src/rest"
out_dir = f"{os.path.dirname(os.path.dirname(openapi_file))}/frontend/src/rest"
command = f"java -jar {CODEGEN} generate " \
f"-i {openapi_file} " \
f"-g typescript-fetch " \
Expand Down

0 comments on commit 993b04a

Please sign in to comment.