Skip to content

Commit e0501d6

Browse files
authored
Merge pull request #248 from superannotateai/sdk-141
Fix excluded extensions log
2 parents e27445d + 2d0ec47 commit e0501d6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/superannotate/lib/app/interface/sdk_interface.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1704,11 +1704,7 @@ def upload_videos_from_folder_to_project(
17041704
project_folder_name = project_name + (f"/{folder_name}" if folder_name else "")
17051705

17061706
logger.info(
1707-
"Uploading all videos with extensions %s from %s to project %s. Excluded file patterns are: %s.",
1708-
extensions,
1709-
str(folder_path),
1710-
project_name,
1711-
exclude_file_patterns,
1707+
f"Uploading all videos with extensions {extensions} from {str(folder_path)} to project {project_name}. Excluded file patterns are: {[*exclude_file_patterns]}.",
17121708
)
17131709
uploaded_paths = []
17141710
for path in video_paths:

0 commit comments

Comments
 (0)