From b6407785dfa5c789f78380352ed1d96a19572b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Thu, 10 Nov 2022 12:18:41 +0100 Subject: [PATCH] FIX: typo --- src/caoscrawler/converters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/caoscrawler/converters.py b/src/caoscrawler/converters.py index f5c923f2..6f76a1da 100644 --- a/src/caoscrawler/converters.py +++ b/src/caoscrawler/converters.py @@ -588,7 +588,7 @@ class JSONFileConverter(DictConverter): def create_children(self, generalStore: GeneralStore, element: StructureElement): if not self.typecheck(element): raise RuntimeError("A JSON file is needed to create children") - # TODO: either add explicit time check for File structure element here, + # TODO: either add explicit type check for File structure element here, # or add a comment to suppress mypy type warning. with open(element.path, 'r') as json_file: json_data = json.load(json_file) -- GitLab