typing: Remove ‘if False’ guard for typing imports.

typing is in the Python 3.5 standard library.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2020-04-18 15:49:45 -07:00 committed by Tim Abbott
parent 75d1fe2b41
commit fe72f3b131
7 changed files with 7 additions and 16 deletions

View file

@ -13,9 +13,7 @@ import os
import sys
import os.path
import pysvn
if False:
from typing import Any, Dict, List, Optional, Text, Tuple, Union
from typing import Any, Dict, List, Optional, Text, Tuple, Union
sys.path.insert(0, os.path.dirname(__file__))
import zulip_svn_config as config