fixup: typo

This commit is contained in:
tcely 2025-03-28 00:47:17 -04:00 committed by GitHub
parent f6200a6d78
commit e59740733d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@ def is_relative_to(self, *other):
return False
# patch Path for Python 3.8
if not hasatrr(Path, 'is_relative_to'):
if not hasattr(Path, 'is_relative_to'):
Path.is_relative_to = is_relative_to