Skip to content

Commit

Permalink
chore: Re-add Python 3.8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Dec 19, 2023
1 parent f007377 commit fb320f1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions target_postgres/tests/test_target_postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# flake8: noqa
import copy
import io
import typing as t
from contextlib import redirect_stdout
from decimal import Decimal
from pathlib import Path
Expand Down Expand Up @@ -93,8 +94,8 @@ def verify_data(
self,
table_name: str,
number_of_rows: int = 1,
primary_key: str | None = None,
check_data: dict | list[dict] | None = None,
primary_key: t.Union[str, None] = None,
check_data: t.Union[t.Dict, t.List[t.Dict], None] = None,
):
"""Checks whether the data in a table matches a provided data sample.
Expand Down

0 comments on commit fb320f1

Please sign in to comment.