chore: add a disable for pylint (#31875)

This commit is contained in:
Beto Dealmeida 2025-01-15 15:41:28 -05:00 committed by GitHub
parent aacfe4d667
commit fc8710f50a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class Firebolt(Dialect):
**parser.Parser.UNARY_PARSERS, **parser.Parser.UNARY_PARSERS,
TokenType.NOT: lambda self: self.expression( TokenType.NOT: lambda self: self.expression(
exp.Not, exp.Not,
this=self._parse_unary(), this=self._parse_unary(), # pylint: disable=protected-access
), ),
} }