From f85139d7c4d521181b2bcf0ccd0c983a5e590c2f Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Thu, 18 Jan 2024 22:10:13 +0100 Subject: [PATCH] typing --- dotdrop/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/importer.py b/dotdrop/importer.py index cd9388f..aaa87fd 100644 --- a/dotdrop/importer.py +++ b/dotdrop/importer.py @@ -289,7 +289,7 @@ class Importer: return True return False - def _ignore(self, path): + def _ignore(self, path: str): if must_ignore([path], self.ignore, debug=self.debug): self.log.dbg(f'ignoring import of {path}') self.log.warn(f'{path} ignored')