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.
2 parents 79400bc + 6af08e3 commit 9f70d96Copy full SHA for 9f70d96
src/superannotate/lib/app/interface/sdk_interface.py
@@ -547,6 +547,12 @@ def upload_images_from_public_urls_to_project(
547
and not-uploaded images' urls
548
:rtype: tuple of list of strs
549
"""
550
+ warning_msg = (
551
+ "The upload_images_from_public_urls function is deprecated and will be removed with the coming release, "
552
+ "please use attach_image_urls_to_project instead."
553
+ )
554
+ logger.warning(warning_msg)
555
+ warnings.warn(warning_msg, DeprecationWarning)
556
557
project_name, folder_name = extract_project_folder(project)
558
0 commit comments