Skip to content

Commit 993b04a

Browse files
committed
Fix Python file format
1 parent 5708c40 commit 993b04a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tools/deployment-cli-tools/ch_cli_tools/openapi.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ def generate_python_client(module, openapi_file, client_src_path, lib_name=LIB_N
8383

8484
def generate_ts_client(openapi_file):
8585
get_dependencies()
86-
out_dir = f"{os.path.dirname(
87-
os.path.dirname(openapi_file))}/frontend/src/rest"
86+
out_dir = f"{os.path.dirname(os.path.dirname(openapi_file))}/frontend/src/rest"
8887
command = f"java -jar {CODEGEN} generate " \
8988
f"-i {openapi_file} " \
9089
f"-g typescript-fetch " \

0 commit comments

Comments
 (0)