aboutsummaryrefslogtreecommitdiff
path: root/src/suite/decorator.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/suite/decorator.py')
-rw-r--r--src/suite/decorator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/suite/decorator.py b/src/suite/decorator.py
index 45599fa..e9f9efa 100644
--- a/src/suite/decorator.py
+++ b/src/suite/decorator.py
@@ -6,7 +6,7 @@
# By: charles <me@cacharle.xyz> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/09/11 12:28:00 by charles #+# #+# #
-# Updated: 2020/10/09 10:59:09 by cacharle ### ########.fr #
+# Updated: 2021/01/31 02:13:40 by charles ### ########.fr #
# #
# ############################################################################ #
@@ -15,7 +15,7 @@ from test import Test
import inspect
-def suite(groups: [str] = [], bonus: bool = False):
+def suite(groups: list[str] = [], bonus: bool = False):
"""Decorator generator for suites arguments"""
def suite_wrapper(origin):