From 4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 31 Jan 2021 02:38:49 +0100 Subject: Fixing some type error, Added travis ci --- src/suite/decorator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/suite/decorator.py') 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 +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # 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): -- cgit