Skip to content

Commit 5449bfb

Browse files
authored
follow black correction
1 parent 8304331 commit 5449bfb

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

openapi_generator_cli/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,18 @@ def run(args=None):
1818
)
1919
arguments.append(jar_path)
2020

21-
if args and type(args)==list:
21+
if args and type(args) == list:
2222
arguments.extend(args)
2323

2424
subprocess.call(" ".join(arguments), shell=True)
2525

26+
2627
def cli():
2728
args = []
2829
if len(sys.argv) > 1:
2930
args = sys.argv[1:]
3031
run(args)
3132

33+
3234
if __name__ == "__main__":
33-
cli()
35+
cli()

0 commit comments

Comments
 (0)