settings: Fix missing typing import.

The world previously passed CI only because old versions of
prod_settings_template have this already present via the * import.
This commit is contained in:
Tim Abbott
2020-04-22 15:14:41 -07:00
parent 7f637f7cb1
commit 96443c0a1d

View File

@@ -14,7 +14,7 @@ from copy import deepcopy
import os
import time
import sys
from typing import Any, Dict, List, Union
from typing import Any, Dict, List, Tuple, Union
from urllib.parse import urljoin
from zerver.lib.db import TimeTrackingConnection