Skip to content

Commit

Permalink
fix: ignore type error in PatternPath creation
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-monch committed Jan 22, 2025
1 parent bca8cb5 commit 09b81fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datalad_remake/utils/patternpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class PatternPath(PurePosixPath):
def __new__(cls, *args):
pattern_path = cls._from_parts(args)
pattern_path = cls._from_parts(args) # type: ignore
pattern_path.validate()
return pattern_path

Expand Down

0 comments on commit 09b81fe

Please sign in to comment.