Skip to content

Commit

Permalink
fix few more lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
scgkiran committed Sep 12, 2024
1 parent 924f441 commit 5a36340
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/coverage/antlr_parser/FuncTestCaseParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -6516,6 +6516,7 @@ def scalarType(self):

class FixedCharTypeContext(ParserRuleContext):
__slots__ = "parser"

def __init__(
self, parser, parent: ParserRuleContext = None, invokingState: int = -1
):
Expand Down Expand Up @@ -6967,6 +6968,7 @@ def precisionTimestampType(self):

class PrecisionTimestampTZTypeContext(ParserRuleContext):
__slots__ = "parser"

def __init__(
self, parser, parent: ParserRuleContext = None, invokingState: int = -1
):
Expand Down Expand Up @@ -7169,7 +7171,6 @@ def copyFrom(self, ctx: ParserRuleContext):
super().copyFrom(ctx)

class IntegerLiteralContext(NumericParameterContext):

def __init__(
self, parser, ctx: ParserRuleContext
): # actually a FuncTestCaseParser.NumericParameterContext
Expand Down

0 comments on commit 5a36340

Please sign in to comment.