Skip to content

Commit

Permalink
Remove unnecessary type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-brown committed May 2, 2022
1 parent dcd7bae commit 81426ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jinja2/idtracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def branch_update(self, branch_symbols: t.Sequence["Symbols"]) -> None:
self.stores.update(sym.stores)

for name in stores:
target = self.find_ref(name) # type: ignore
target = self.find_ref(name)
assert target is not None, "should not happen"

if self.parent is not None:
Expand Down

0 comments on commit 81426ca

Please sign in to comment.