Skip to content

Commit

Permalink
pep8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sugetha24 committed Oct 23, 2023
1 parent 9d384c1 commit a2ab19b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def tasker(self, tags: list, mode: string, auto_create: bool = True):
tag_manager = CvManagerResult(builder_name='tags_manager')

# create workspace
workspace_name_id = "AW_" + ''.join(random.choices(string.ascii_uppercase + string.digits, k=6))+'{:%Y%m%d_%H%M%S}'.format(datetime.now())
workspace_name_id = "AW_" + ''.join(random.choices(string.ascii_uppercase + string.digits, k=6)) + '{:%Y%m%d_%H%M%S}'.format(datetime.now())
workspace_id = workspace_name_id

workspace_name = workspace_name_id
Expand Down

0 comments on commit a2ab19b

Please sign in to comment.