We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d9f959 commit 4ea29f5Copy full SHA for 4ea29f5
components/ingress/src/dynamo/ingress/main.py
@@ -31,9 +31,7 @@ def parse_args():
31
)
32
flags = parser.parse_args()
33
34
- kwargs = {}
35
- if flags.http_port is not None:
36
- kwargs["http_port"] = flags.http_port
+ kwargs = {"http_port": flags.http_port}
37
if flags.kv_cache_block_size is not None:
38
kwargs["kv_cache_block_size"] = flags.kv_cache_block_size
39
0 commit comments