Skip to content

Commit 566bf10

Browse files
committed
Updated clone_project defauly description
1 parent ef7cb2f commit 566bf10

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/superannotate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
import typing
55

6-
__version__ = "4.4.10b1"
6+
__version__ = "4.4.10"
77

88
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
99

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,8 @@ def clone_project(
477477
project_copy = copy.copy(project)
478478
if project_description:
479479
project_copy.description = project_description
480+
else:
481+
project_copy.description = project.description
480482
project_copy.name = project_name
481483
create_response = self.controller.projects.create(project_copy)
482484
create_response.raise_for_status()

0 commit comments

Comments
 (0)