We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122d81b commit c6f00c4Copy full SHA for c6f00c4
docs/conf.py
@@ -21,7 +21,7 @@
21
# -- Project information -----------------------------------------------------
22
23
project = "sagemaker-experiments"
24
-copyright = u"%s, Amazon" % datetime.now().year
+copyright = "%s, Amazon" % datetime.now().year
25
author = "Amazon Web Services"
26
version = get_distribution(project).version
27
tests/helpers.py
@@ -36,7 +36,7 @@ def retry(callable, num_attempts=8):
36
if i == num_attempts - 1:
37
raise ex
38
print("Retrying", ex)
39
- time.sleep(2 ** i)
+ time.sleep(2**i)
40
assert False, "logic error in retry"
41
42
0 commit comments