Skip to content

Commit

Permalink
fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
sugetha24 committed Oct 24, 2023
1 parent a2ab19b commit 855b8b6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ 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())
my_date = datetime.now()
datetime_string = str(my_date.year)+str(my_date.month)+str(my_date.day)+'_'+str(my_date.hour)+str(my_date.minute)+str(my_date.second)
workspace_name_id = "AW_" + ''.join(random.choices(string.ascii_uppercase + string.digits, k=6)) + datetime_string
workspace_id = workspace_name_id

workspace_name = workspace_name_id
Expand Down

0 comments on commit 855b8b6

Please sign in to comment.