Skip to content

Commit

Permalink
Enable 3.9 typehints
Browse files Browse the repository at this point in the history
  • Loading branch information
pipliggins committed Nov 29, 2024
1 parent 6991f1a commit 6591c27
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/adtl/autoparser/create_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Create draft intermediate mapping in CSV from source dataset to target dataset
"""

from __future__ import annotations

import argparse
import warnings
from pathlib import Path
Expand Down
2 changes: 2 additions & 0 deletions src/adtl/autoparser/dict_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Infer a data dictionary from a dataset.
"""

from __future__ import annotations

import argparse
from pathlib import Path

Expand Down
2 changes: 2 additions & 0 deletions src/adtl/autoparser/make_toml.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Generate TOML parser from intermediate CSV file
"""

from __future__ import annotations

import argparse
import json
import logging
Expand Down

0 comments on commit 6591c27

Please sign in to comment.