Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
Remove obsolete ignores on Column dunders
Browse files Browse the repository at this point in the history
  • Loading branch information
zero323 committed Aug 29, 2019
1 parent fabfc5b commit 3afb154
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions third_party/3/pyspark/sql/column.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Stubs for pyspark.sql.column (Python 3.5)
# Stubs for pyspark.sql.column (Python 3.5)
#

from typing import overload
Expand All @@ -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: ...
Expand Down

0 comments on commit 3afb154

Please sign in to comment.