Skip to content

Commit 18818f6

Browse files
Use backported typing_extensions.TypeAlias for Python 3.9
1 parent 82ba58a commit 18818f6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pins/_adaptors.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
import json
44
from abc import abstractmethod
5-
from typing import TYPE_CHECKING, Any, ClassVar, TypeAlias, overload
5+
from typing import TYPE_CHECKING, Any, ClassVar, overload
66

77
from databackend import AbstractBackend
8+
from typing_extensions import TypeAlias
89

910
if TYPE_CHECKING:
1011
import pandas as pd

0 commit comments

Comments
 (0)