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 98198e9 commit 4494d3fCopy full SHA for 4494d3f
test/unit/datatype/test_oids.py
@@ -1,9 +1,11 @@
1
+import typing
2
+
3
import pytest
4
5
from redshift_connector.utils.oids import RedshiftOID, get_datatype_name
6
-all_oids: list[int] = [d for d in RedshiftOID]
-all_datatypes: list[tuple[int, str]] = [(d, d.name) for d in RedshiftOID]
7
+all_oids: typing.List[int] = [d for d in RedshiftOID]
8
+all_datatypes: typing.List[typing.Tuple[int, str]] = [(d, d.name) for d in RedshiftOID]
9
10
11
@pytest.mark.parametrize("oid", all_oids)
0 commit comments