From bb2f4ce3cc3c29ae8f06110f74f00e1624160cff Mon Sep 17 00:00:00 2001 From: Jakob Schnitzer Date: Fri, 3 Jan 2025 08:41:45 +0100 Subject: [PATCH] fixup-types --- beangulp/importers/csvbase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beangulp/importers/csvbase.py b/beangulp/importers/csvbase.py index 2e80f61..02a80ec 100644 --- a/beangulp/importers/csvbase.py +++ b/beangulp/importers/csvbase.py @@ -6,7 +6,7 @@ from collections import defaultdict from itertools import islice -from typing import Any, FrozenSet +from typing import Any, Dict, FrozenSet from beancount.core import data import beangulp @@ -182,7 +182,7 @@ class CSVReader(metaclass=CSVMeta): """Comment character.""" # This is populated by the CSVMeta metaclass. - columns: dict[Any, Any] = {} + columns: Dict[Any, Any] = {} def read(self, filepath): """Read CSV file according to class defined columns specification.