Skip to content

Commit

Permalink
fix pylint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ofekisr committed Sep 26, 2021
1 parent 116fbb1 commit 1eac48c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion superset/db_engine_specs/druid.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
logger = logging.getLogger()


class DruidEngineSpec(BaseEngineSpec): # pylint: disable=abstract-method
class DruidEngineSpec(BaseEngineSpec):
"""Engine spec for Druid.io"""

engine = "druid"
Expand Down
1 change: 0 additions & 1 deletion superset/models/sql_lab.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# specific language governing permissions and limitations
# under the License.
"""A collection of ORM sqlalchemy models for SQL Lab"""
import enum
import re
from datetime import datetime
from typing import Any, Dict, List
Expand Down
2 changes: 1 addition & 1 deletion superset/sqllab/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from superset.common.db_query_status import QueryStatus


def apply_display_max_row_configuration_if_require(
def apply_display_max_row_configuration_if_require( # pylint: disable=invalid-name
sql_results: Dict[str, Any], max_rows_in_result: int
) -> Dict[str, Any]:
"""
Expand Down

0 comments on commit 1eac48c

Please sign in to comment.