Skip to content

Commit

Permalink
Update paths.py
Browse files Browse the repository at this point in the history
  • Loading branch information
baseplate-admin committed Feb 24, 2024
1 parent 8a3040a commit 7afee90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_ltree/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, prefix: str | None = None, skip: list[str] | None = None):
def __iter__(self) -> "PathGenerator":
return self

def __next__(self) -> "PathValue" | None:
def __next__(self) -> "PathValue | None":
for val in self.product_iterator:
label = "".join(val)
path = PathValue(
Expand Down

0 comments on commit 7afee90

Please sign in to comment.