Skip to content

Commit 998b28c

Browse files
committed
remove __
1 parent d9dacbf commit 998b28c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -712,8 +712,8 @@ def move_images(
712712
source_project: Union[NotEmptyStr, dict],
713713
image_names: Optional[List[NotEmptyStr]],
714714
destination_project: Union[NotEmptyStr, dict],
715-
*_,
716-
**__,
715+
*args,
716+
**kwargs,
717717
):
718718
"""Move images in bulk between folders in a project
719719
@@ -994,7 +994,7 @@ def delete_image(project: Union[NotEmptyStr, dict], image_name: str):
994994

995995
@Trackable
996996
@validate_arguments
997-
def get_image_metadata(project: Union[NotEmptyStr, dict], image_name: str, *_, **__):
997+
def get_image_metadata(project: Union[NotEmptyStr, dict], image_name: str, *args, **kwargs):
998998
"""Returns image metadata
999999
10001000
:param project: project name or folder path (e.g., "project1/folder1")

0 commit comments

Comments
 (0)