Skip to content

Commit

Permalink
Fixes for mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
peterallenwebb committed Dec 10, 2024
1 parent e062c40 commit 5579337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt_common/clients/jinja.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def parse_signature(self, node: Union[jinja2.nodes.Macro, jinja2.nodes.CallBlock
setattr(node, "arg_types", [])
setattr(node, "has_type_annotations", False)

args = node.args = []
defaults = node.defaults = []
args = node.args = [] # type: ignore
defaults = node.defaults = [] # type: ignore

self.stream.expect("lparen")
while self.stream.current.type != "rparen":
Expand Down

0 comments on commit 5579337

Please sign in to comment.