Skip to content

Commit

Permalink
Fixing lint adding typing to variable
Browse files Browse the repository at this point in the history
  • Loading branch information
michellethomas committed Apr 9, 2019
1 parent d3efa77 commit 94968ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion superset/views/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import re
import time
import traceback
from typing import List # noqa: F401
from urllib import parse

from flask import (
Expand Down Expand Up @@ -82,7 +83,7 @@
'The access requests seem to have been deleted')
USER_MISSING_ERR = __('The user seems to have been deleted')

FORM_DATA_KEY_BLACKLIST = []
FORM_DATA_KEY_BLACKLIST = [] # type: List[str]
if not config.get('ENABLE_JAVASCRIPT_CONTROLS'):
FORM_DATA_KEY_BLACKLIST = [
'js_tooltip',
Expand Down

0 comments on commit 94968ad

Please sign in to comment.