From 655604e6c749ace4866e12abd76d97962f017e66 Mon Sep 17 00:00:00 2001 From: SKairinos Date: Thu, 7 Nov 2024 17:29:36 +0000 Subject: [PATCH] delete unused var --- codeforlife/types.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/codeforlife/types.py b/codeforlife/types.py index a2c85b3..68524a1 100644 --- a/codeforlife/types.py +++ b/codeforlife/types.py @@ -7,8 +7,6 @@ import typing as t -T = t.TypeVar("T") - Args = t.Tuple[t.Any, ...] KwArgs = t.Dict[str, t.Any]