This is an automated email from the ASF dual-hosted git repository. beto pushed a commit to branch add-pylint-disable in repository https://gitbox.apache.org/repos/asf/superset.git
commit a251c438906ee4e4e0e212c0e75aee9c1f726a70 Author: Beto Dealmeida <[email protected]> AuthorDate: Wed Jan 15 14:43:42 2025 -0500 chore: add a disable for pylint --- 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 ), }
