From 41e058ac648af276f23589db39fcdbe0b8e740b1 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Fri, 3 May 2024 11:41:50 +0200 Subject: [PATCH] Add TODO comment --- bin/fwr.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/fwr.py b/bin/fwr.py index 57bbb5e..8062905 100644 --- a/bin/fwr.py +++ b/bin/fwr.py @@ -74,6 +74,7 @@ def from_file(path, spec): elif "type" in spec and spec["type"] in specfields: fields = specfields[spec["type"]] else: + # TODO: Should default to looking for spec.format and doing a legacy import on it return "Neither 'type' nor 'fields' given. I don't know how to import this fixed-width dataset." firstRow = spec.get("firstRow", 0)