Skip to content

Commit 000fa61

Browse files
committed
Fix Flake8 complaints, e.g. "import *" which is needed.
Signed-off-by: M Q <mingmelvinq@nvidia.com>
1 parent de06258 commit 000fa61

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

examples/apps/dicom_series_to_image_app/__main__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@
1111

1212
from app import App
1313

14+
from monai.deploy.logger import load_env_log_level
15+
1416
if __name__ == "__main__":
17+
load_env_log_level()
1518
App().run()

examples/apps/dicom_series_to_image_app/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,5 @@ def compose(self):
4949

5050

5151
if __name__ == "__main__":
52+
load_env_log_level()
5253
App().run()

0 commit comments

Comments
 (0)