From f4c23577370ab006bce2be1673886f7b51aafed2 Mon Sep 17 00:00:00 2001 From: jan Date: Mon, 28 Feb 2022 23:03:42 -0800 Subject: [PATCH] fix type hint --- masque/library/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/library/library.py b/masque/library/library.py index abb243e..b65dbf4 100644 --- a/masque/library/library.py +++ b/masque/library/library.py @@ -304,7 +304,7 @@ class Library: del self.secondary[key2] del self.cache[key2] - def copy(self: L, preserve_cache: bool = False) -> L: + def copy(self, preserve_cache: bool = False) -> 'Library': """ Create a copy of this `Library`.