From e59740733d627d6841d54dde4ce40ce50802b1c4 Mon Sep 17 00:00:00 2001 From: tcely Date: Fri, 28 Mar 2025 00:47:17 -0400 Subject: [PATCH] fixup: typo --- tubesync/sync/signals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/sync/signals.py b/tubesync/sync/signals.py index cc7b05d5..97649fe6 100644 --- a/tubesync/sync/signals.py +++ b/tubesync/sync/signals.py @@ -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