From 0bf32fadd85d5938ae29d489efdd82e2cd137300 Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Thu, 26 Feb 2026 15:51:49 -0500 Subject: Passing Managers into flow tasks for better pytest usage. Conftests broken out into seperate fixture files. Extensive type hinting. --- tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/__init__.py') 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)) -- cgit v1.2.3