mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
[flake8] Resolving F4?? errors (#3811)
This commit is contained in:
committed by
Maxime Beauchemin
parent
ec21d5af21
commit
d03b74f754
@@ -14,7 +14,6 @@ import pandas as pd
|
||||
from past.builtins import basestring
|
||||
|
||||
from superset import app, appbuilder, cli, dataframe, db
|
||||
from superset.models import core as models
|
||||
from superset.models.helpers import QueryStatus
|
||||
from superset.models.sql_lab import Query
|
||||
from superset.security import sync_role_definitions
|
||||
|
||||
@@ -12,8 +12,7 @@ from mock import Mock, patch
|
||||
|
||||
from superset import db, security, sm
|
||||
from superset.connectors.druid.models import (
|
||||
DruidCluster, DruidDatasource, DruidMetric, Postaggregator, PyDruid,
|
||||
Quantile,
|
||||
DruidCluster, DruidDatasource, DruidMetric,
|
||||
)
|
||||
from .base_tests import SupersetTestCase
|
||||
|
||||
@@ -75,7 +74,7 @@ class DruidTests(SupersetTestCase):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(DruidTests, self).__init__(*args, **kwargs)
|
||||
|
||||
@patch('superset.connectors.druid.models.PyDruid') # noqa ignore: F811
|
||||
@patch('superset.connectors.druid.models.PyDruid')
|
||||
def test_client(self, PyDruid):
|
||||
self.login(username='admin')
|
||||
instance = PyDruid.return_value
|
||||
@@ -280,7 +279,7 @@ class DruidTests(SupersetTestCase):
|
||||
self.assertIn('datasource_for_gamma', resp)
|
||||
self.assertNotIn('datasource_not_for_gamma', resp)
|
||||
|
||||
@patch('superset.connectors.druid.models.PyDruid') # noqa ignore: F811
|
||||
@patch('superset.connectors.druid.models.PyDruid')
|
||||
def test_sync_druid_perm(self, PyDruid):
|
||||
self.login(username='admin')
|
||||
instance = PyDruid.return_value
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# flake8: noqa
|
||||
from superset.config import *
|
||||
|
||||
AUTH_USER_REGISTRATION_ROLE = 'alpha'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from datetime import datetime, timedelta
|
||||
from datetime import datetime
|
||||
import unittest
|
||||
|
||||
from mock import Mock, patch
|
||||
@@ -8,6 +8,7 @@ import superset.utils as utils
|
||||
from superset.utils import DTTM_ALIAS
|
||||
import superset.viz as viz
|
||||
|
||||
|
||||
class BaseVizTestCase(unittest.TestCase):
|
||||
def test_constructor_exception_no_datasource(self):
|
||||
form_data = {}
|
||||
|
||||
Reference in New Issue
Block a user