Skip to content

Commit 6d9b380

Browse files
committed
Fix complaints
Signed-off-by: M Q <mingmelvinq@nvidia.com>
1 parent 68caaa4 commit 6d9b380

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

platforms/aidoc/env_settings.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
export HOLOSCAN_MODEL_PATH=models
3+
export HOLOSCAN_INPUT_PATH=dcm
4+
export HOLOSCAN_OUTPUT_PATH=output_restful_app
5+
export HOLOSCAN_LOG_LEVEL=INFO

platforms/aidoc/restful_app/ai_spleen_seg_app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def _get_files_in_folder(self, folder_path: Union[str, Path]) -> List[str]:
7878
List[str]: A list of absolute paths to the files in the folder.
7979
"""
8080
if not os.path.isdir(folder_path):
81-
self._logger.warning(f"Output folder '{folder_path}' not found, returning empty file list.")
81+
self._logger.warning(f"Output folder {folder_path!r} not found, returning empty file list.")
8282
return []
8383

8484
file_paths = []

platforms/aidoc/restful_app/env_settings_repo.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)