diff options
author | Frederick Yin <fkfd@fkfd.me> | 2021-10-31 13:49:35 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2021-10-31 13:49:35 +0800 |
commit | 5bf44bd6be9d0390c845bc20b7e416ad0085790f (patch) | |
tree | 34805a4f270a66b1f9739512bd31e582d2a3a1d6 /jimbrella | |
parent | 7ec6941b8a7a8fb84d8202f48571935ac31f700b (diff) |
Compat: list[dict] type hinting unsupported by 3.7
Diffstat (limited to 'jimbrella')
-rw-r--r-- | jimbrella/csv_table.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jimbrella/csv_table.py b/jimbrella/csv_table.py index 3c420ff..15263c6 100644 --- a/jimbrella/csv_table.py +++ b/jimbrella/csv_table.py @@ -5,7 +5,7 @@ from .utils import identity class CsvTable: - def __init__(self, path, schema: list[dict]): + def __init__(self, path, schema: list): """A generic CSV table of data, and basic I/O operations. The first column should be unique. If so, it can be used to index rows, a feature of |