Skip to content

Commit

Permalink
Modiy type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Sep 19, 2021
1 parent 55b78b8 commit 1e7422a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tabledata/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import copy
import re
from collections import OrderedDict, namedtuple
from typing import Any, Dict, Iterator, List, Optional, Sequence, Tuple
from typing import Any, Dict, Iterator, List, Optional, Sequence, Tuple, Union

import dataproperty as dp
import typepy
Expand Down Expand Up @@ -40,7 +40,7 @@ def __init__(
headers: Sequence[str],
rows: Sequence,
dp_extractor: Optional[dp.DataPropertyExtractor] = None,
type_hints: Optional[Sequence[TypeHint]] = None,
type_hints: Optional[Sequence[Union[str, TypeHint]]] = None,
max_workers: Optional[int] = None,
max_precision: Optional[int] = None,
):
Expand Down

0 comments on commit 1e7422a

Please sign in to comment.