Skip to content

Commit 06fb12f

Browse files
committed
fix type check error
1 parent 9185f94 commit 06fb12f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

intbot/intbot/settings.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
import os
1414
import warnings
15+
from typing import Any
1516
from pathlib import Path
1617

1718
# Build paths inside the project like this: BASE_DIR / 'subdir'.
@@ -112,6 +113,9 @@
112113
DJANGO_ENV = os.environ["DJANGO_ENV"]
113114
APP_VERSION = os.environ.get("APP_VERSION", "latest")[:8]
114115

116+
# Just to make mypy happy
117+
TASKS: dict[str, Any]
118+
115119
if DJANGO_ENV == "dev":
116120
DEBUG = True
117121
ALLOWED_HOSTS = ["127.0.0.1", "localhost"]

0 commit comments

Comments
 (0)