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

beto 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 fc8710f50a chore: add a disable for pylint (#31875)
fc8710f50a is described below

commit fc8710f50ae5ec2f7280d1f14ae54d3a96300ac1
Author: Beto Dealmeida <[email protected]>
AuthorDate: Wed Jan 15 15:41:28 2025 -0500

    chore: add a disable for pylint (#31875)
---
 superset/sql/dialects/firebolt.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/sql/dialects/firebolt.py 
b/superset/sql/dialects/firebolt.py
index c939dee45b..a4767596f4 100644
--- a/superset/sql/dialects/firebolt.py
+++ b/superset/sql/dialects/firebolt.py
@@ -40,7 +40,7 @@ class Firebolt(Dialect):
             **parser.Parser.UNARY_PARSERS,
             TokenType.NOT: lambda self: self.expression(
                 exp.Not,
-                this=self._parse_unary(),
+                this=self._parse_unary(),  # pylint: disable=protected-access
             ),
         }
 

Reply via email to