aboutsummaryrefslogtreecommitdiff
path: root/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index f37e785..e60faf0 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -2,6 +2,6 @@ import random
import string
-def generate_amt_id(length=30) -> str:
+def generate_amt_id(length: int = 30) -> str:
chars = string.ascii_uppercase + string.digits
return "".join(random.choices(chars, k=length))