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 2021/05/06 19:12:19 UTC

[superset] branch master updated: fix: disable pylint error breaking CI (#14506)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1df9384  fix: disable pylint error breaking CI (#14506)
1df9384 is described below

commit 1df93848d265c6db90e389dd1f6a55ff502f77c2
Author: Hugh A. Miles II <hu...@gmail.com>
AuthorDate: Thu May 6 15:11:07 2021 -0400

    fix: disable pylint error breaking CI (#14506)
---
 superset/models/dashboard.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset/models/dashboard.py b/superset/models/dashboard.py
index 6203cb4..5252574 100644
--- a/superset/models/dashboard.py
+++ b/superset/models/dashboard.py
@@ -171,6 +171,7 @@ class Dashboard(  # pylint: disable=too-many-instance-attributes
 
     @property
     def datasources(self) -> Set[BaseDatasource]:
+        # pylint: disable=using-constant-test
         return {slc.datasource for slc in self.slices if slc.datasource}
 
     @property