fix: don't create examples db on 'superset init' (#9881)

* chore: don't create examples db on 'superset init'

* fix isort
This commit is contained in:
Maxime Beauchemin
2020-05-21 21:34:53 -07:00
committed by GitHub
parent 3e8e441bfc
commit ee991963c7
8 changed files with 7 additions and 9 deletions

View File

@@ -15,11 +15,11 @@
# specific language governing permissions and limitations
# under the License.
import logging
from dataclasses import dataclass
from typing import List, Optional, Set
from urllib import parse
import sqlparse
from dataclasses import dataclass
from sqlparse.sql import Identifier, IdentifierList, remove_quotes, Token, TokenList
from sqlparse.tokens import Keyword, Name, Punctuation, String, Whitespace
from sqlparse.utils import imt