diff --git a/third_party/3/pyspark/sql/column.pyi b/third_party/3/pyspark/sql/column.pyi index 4bb372c4..7fbf5d54 100644 --- a/third_party/3/pyspark/sql/column.pyi +++ b/third_party/3/pyspark/sql/column.pyi @@ -1,4 +1,4 @@ -# Stubs for pyspark.sql.column (Python 3.5) + # Stubs for pyspark.sql.column (Python 3.5) # from typing import overload @@ -19,20 +19,20 @@ class Column: def __div__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... def __truediv__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... def __mod__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... - def __radd__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore - def __rsub__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... - def __rmul__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore - def __rdiv__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... - def __rtruediv__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... - def __rmod__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore + def __radd__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ... + def __rsub__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ... + def __rmul__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ... + def __rdiv__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ... + def __rtruediv__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ... + def __rmod__(self, other: Union[bool, int, float, DecimalLiteral]) -> Column: ... def __pow__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... - def __rpow__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... + def __rpow__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ... def __eq__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore def __ne__(self, other: Any) -> Column: ... # type: ignore - def __lt__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore - def __le__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore - def __ge__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore - def __gt__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore + def __lt__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... + def __le__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... + def __ge__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... + def __gt__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... def eqNullSafe(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... def __and__(self, other: Column) -> Column: ... def __or__(self, other: Column) -> Column: ...