File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,10 @@ class SupportsNativeNamespace(Protocol):
132132 def __native_namespace__ (self ) -> ModuleType : ...
133133
134134
135+ IntoCompliantExpr : TypeAlias = (
136+ "CompliantExpr[CompliantFrameT_contra, CompliantSeriesT_co] | CompliantSeriesT_co"
137+ )
138+
135139IntoExpr : TypeAlias = Union ["Expr" , str , "Series[Any]" ]
136140"""Anything which can be converted to an expression.
137141
@@ -321,14 +325,6 @@ class DTypes:
321325 Unknown : type [dtypes .Unknown ]
322326
323327
324- if TYPE_CHECKING :
325- # This one needs to be in TYPE_CHECKING to pass on 3.9,
326- # and can only be defined after CompliantExpr has been defined
327- IntoCompliantExpr : TypeAlias = (
328- CompliantExpr [CompliantFrameT_contra , CompliantSeriesT_co ] | CompliantSeriesT_co
329- )
330-
331-
332328__all__ = [
333329 "CompliantDataFrame" ,
334330 "CompliantLazyFrame" ,
You can’t perform that action at this time.
0 commit comments