From fc8710f50ae5ec2f7280d1f14ae54d3a96300ac1 Mon Sep 17 00:00:00 2001 From: Beto Dealmeida Date: Wed, 15 Jan 2025 15:41:28 -0500 Subject: [PATCH] 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 c939dee45..a4767596f 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 ), }