Skip to content

Commit

Permalink
Update pyi.py
Browse files Browse the repository at this point in the history
Co-authored-by: Akuli <[email protected]>
  • Loading branch information
AlexWaygood and Akuli authored Jun 28, 2023
1 parent 81da5f1 commit f7bbabe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ def visit_Call(self, node: ast.Call) -> None:
if node.args:
with self.string_literals_allowed.enabled():
self.visit(node.args[0])
# But in keyword arguments they're most likely TypeVar bounds,
# But in other arguments they're most likely TypeVar bounds,
# which should not be quoted.
for arg in chain(node.args[1:], node.keywords):
self.visit(arg)
Expand Down

0 comments on commit f7bbabe

Please sign in to comment.