Skip to content

Commit

Permalink
Correct type annotation
Browse files Browse the repository at this point in the history
Now matches the actual expectations of the function
  • Loading branch information
mih committed Jan 26, 2024
1 parent 83f0f54 commit 48d69b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datalad_next/iter_collections/gitstatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def _yield_hierarchy_items(

def _yield_repo_untracked(
path: Path,
untracked: str,
untracked: str | None,
) -> Generator[GitDiffItem, None, None]:
"""Yield items on all untracked content in a repository"""
if untracked is None:
Expand Down

0 comments on commit 48d69b9

Please sign in to comment.