From 44d306228070d3bdc7087d25cba37510592f5fe2 Mon Sep 17 00:00:00 2001 From: Puneeth Chaganti Date: Wed, 2 Oct 2024 00:07:33 +0530 Subject: [PATCH] util: Remove unused type ignore after excluding sample/conf.py --- app/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/util.py b/app/util.py index 12f751f..b2e6f16 100644 --- a/app/util.py +++ b/app/util.py @@ -15,7 +15,7 @@ sys.path.insert(0, str(DATA_REPO_PATH)) try: - from conf import TIMEZONE # type: ignore [attr-defined] + from conf import TIMEZONE except ImportError: TIMEZONE = "Asia/Kolkata"