You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2023/01/07 17:43:29 UTC

[superset] branch ssh-logging updated: fix linting

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch ssh-logging
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/ssh-logging by this push:
     new 8b352e5000 fix linting
8b352e5000 is described below

commit 8b352e500039c404b155ddbd5dd60a48a021cef2
Author: hughhhh <hu...@gmail.com>
AuthorDate: Sat Jan 7 12:37:10 2023 -0500

    fix linting
---
 superset/models/helpers.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/models/helpers.py b/superset/models/helpers.py
index 8931ba3af6..fd0a1eff5c 100644
--- a/superset/models/helpers.py
+++ b/superset/models/helpers.py
@@ -1326,7 +1326,7 @@ class ExploreMixin:  # pylint: disable=too-many-public-methods
         col = sa.column(label, type_=col_type)
         return self.make_sqla_column_compatible(col, label)
 
-    def get_sqla_query(  # pylint: disable=too-many-arguments,too-many-locals,too-many-branches,too-many-statements,unused-argument
+    def get_sqla_query(  # pylint: disable=too-many-arguments,too-many-locals,too-many-branches,too-many-statements
         self,
         apply_fetch_values_predicate: bool = False,
         columns: Optional[List[Column]] = None,