Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/superannotate/lib/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

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

SPECIAL_CHARACTERS_IN_PROJECT_FOLDER_NAMES = set('/\\:*?"<>|')
SPECIAL_CHARACTERS_IN_PROJECT_FOLDER_NAMES = set('/\\:*?"<>|')
MAX_PIXEL_RESOLUTION = 4_000_000
MAX_VECTOR_RESOLUTION = 100_000_000
MAX_IMAGE_SIZE = 100 * 1024 * 1024 # 100 MB limit
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test_project_rename.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ class TestProjectRename(BaseTestCase):
PROJECT_DESCRIPTION = "Desc"
PROJECT_TYPE = "Vector"
NEW_PROJECT_NAME = "new"
REPLACED_PROJECT_NAME = "_ _ _ _ _ _ _ _ _"
BAD_PROJECT_NAME = '/ \ : * ? " < > |'
REPLACED_PROJECT_NAME = "_ _ _ _ _ _ _ _ _ _"
BAD_PROJECT_NAME = '/ \ : * ? " < > |'

def setUp(self, *args, **kwargs):
self.tearDown()
Expand Down