Skip to content

Commit

Permalink
fixup-types
Browse files Browse the repository at this point in the history
  • Loading branch information
yagebu committed Jan 3, 2025
1 parent 489729d commit bb2f4ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beangulp/importers/csvbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit bb2f4ce

Please sign in to comment.