Skip to content

Commit 0dc3088

Browse files
author
Sergey Ermolin
committed
fixed comment line by running -m tox -e black-format
1 parent 34a99e2 commit 0dc3088

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def name_from_base(base, max_length=63, short=False):
8383

8484
def unique_name_from_base(base, max_length=63):
8585
"""Placeholder Docstring"""
86-
random.seed(int(uuid.uuid4())) #using uuid to randomize, otherwise system timestamp is used.
86+
random.seed(int(uuid.uuid4())) # using uuid to randomize, otherwise system timestamp is used.
8787
unique = "%04x" % random.randrange(16**4) # 4-digit hex
8888
ts = str(int(time.time()))
8989
available_length = max_length - 2 - len(ts) - len(unique)

0 commit comments

Comments
 (0)