Skip to content

Commit

Permalink
use typing_extension instead
Browse files Browse the repository at this point in the history
  • Loading branch information
hughhhh committed Oct 20, 2021
1 parent f580f6b commit f3282cb
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions superset/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,15 @@
import sys
from collections import OrderedDict
from datetime import date, timedelta
from typing import (
Any,
Callable,
Dict,
List,
Literal,
Optional,
Type,
TYPE_CHECKING,
Union,
)
from typing import Any, Callable, Dict, List, Optional, Type, TYPE_CHECKING, Union

from cachelib.base import BaseCache
from celery.schedules import crontab
from dateutil import tz
from flask import Blueprint
from flask_appbuilder.security.manager import AUTH_DB
from pandas.io.parsers import STR_NA_VALUES
from typing_extensions import Literal
from werkzeug.local import LocalProxy

from superset.jinja_context import BaseTemplateProcessor
Expand Down

0 comments on commit f3282cb

Please sign in to comment.