Skip to content

Commit 1efb59e

Browse files
authored
Merge pull request #202 from superannotateai/FRIDAY-286
Add new charactoer to special characters
2 parents 39d7677 + 0245fc1 commit 1efb59e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/superannotate/lib/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
NON_PLOTABLE_KEYS = ["eta_seconds", "iteration", "data_time", "time", "model"]
5050

51-
SPECIAL_CHARACTERS_IN_PROJECT_FOLDER_NAMES = set('/\\:*?"<>|')
51+
SPECIAL_CHARACTERS_IN_PROJECT_FOLDER_NAMES = set('/\\:*?"<>|')
5252
MAX_PIXEL_RESOLUTION = 4_000_000
5353
MAX_VECTOR_RESOLUTION = 100_000_000
5454
MAX_IMAGE_SIZE = 100 * 1024 * 1024 # 100 MB limit

tests/integration/test_project_rename.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ class TestProjectRename(BaseTestCase):
77
PROJECT_DESCRIPTION = "Desc"
88
PROJECT_TYPE = "Vector"
99
NEW_PROJECT_NAME = "new"
10-
REPLACED_PROJECT_NAME = "_ _ _ _ _ _ _ _ _"
11-
BAD_PROJECT_NAME = '/ \ : * ? " < > |'
10+
REPLACED_PROJECT_NAME = "_ _ _ _ _ _ _ _ _ _"
11+
BAD_PROJECT_NAME = '/ \ : * ? " < > |'
1212

1313
def setUp(self, *args, **kwargs):
1414
self.tearDown()

0 commit comments

Comments
 (0)