Skip to content

Commit fb6415d

Browse files
update
1 parent dddcb83 commit fb6415d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/core/col.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"__lt__": "<",
3838
"__eq__": "==",
3939
"__ne__": "!=",
40-
"__and__" : "&",
41-
"__rand__" : "&",
40+
"__and__": "&",
41+
"__rand__": "&",
4242
}
4343

4444

@@ -158,8 +158,10 @@ def __mod__(self, other: Any) -> Expression:
158158

159159
def __rmod__(self, other: Any) -> Expression:
160160
return self._with_binary_op("__rmod__", other)
161+
161162
def __and__(self, other: Any) -> Expression:
162163
return self._with_binary_op("__and__", other)
164+
163165
def __rand__(self, other: Any) -> Expression:
164166
return self._with_binary_op("__rand__", other)
165167

0 commit comments

Comments
 (0)