We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3432dc8 commit 4887e32Copy full SHA for 4887e32
gedcom7/cast.py
@@ -1,9 +1,11 @@
1
"""Cast strings values to the appropriate data type."""
2
3
+from __future__ import annotations
4
+
5
import re
6
from collections.abc import Callable
7
-from . import const, types, grammar
8
+from . import const, grammar, types
9
10
11
def cast_value(text: str, type_id: str) -> types.DataType | None:
gedcom7/types.py
"""Classes and data types."""
+from dataclasses import dataclass, field
from typing import Literal, Union
from . import const
-from dataclasses import dataclass, field
@dataclass
0 commit comments