Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
Signed-off-by: Wenqi Li <[email protected]>
  • Loading branch information
wyli committed Oct 10, 2023
1 parent 168e520 commit bd92475
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion monai/bundle/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ def update_kwargs(args: str | dict | None = None, ignore_none: bool = True, **kw
for k, v in kwargs.items():
if ignore_none and v is None:
continue
print(f"{k}={v}")
if isinstance(v, dict) and isinstance(args_.get(k), dict):
args_[k] = update_kwargs(args_[k], ignore_none, **v)
else:
Expand Down

0 comments on commit bd92475

Please sign in to comment.