From b1a816e5048e2561de082fd4ee0a998c6697d026 Mon Sep 17 00:00:00 2001 From: Dima Gerasimov Date: Sat, 29 Jun 2019 13:43:09 +0100 Subject: [PATCH] fix mypy --- notes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/__init__.py b/notes/__init__.py index f05c894..319605f 100644 --- a/notes/__init__.py +++ b/notes/__init__.py @@ -51,7 +51,7 @@ class PorgAll: res: List[Org] = [] for p in self.paths: for of in _get_org_files_in(p): - org = Org.from_file(of) + org = Org.from_file(str(of)) res.extend(query(org)) return res