Skip to content

Commit

Permalink
Typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Oct 1, 2024
1 parent a5611b1 commit 2ab262f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trogon/introspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class CommandSchema:
@property
def path_from_root(self) -> list["CommandSchema"]:
node = self
path = [self]
path: list[CommandSchema] = [self]
while True:
node = node.parent
if node is None:
Expand Down

0 comments on commit 2ab262f

Please sign in to comment.