Skip to content

Commit 0fc7e19

Browse files
committed
Removed whitespace
1 parent 73564ab commit 0fc7e19

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pandas/indexes/frozen.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ def __add__(self, other):
2828
if isinstance(other, tuple):
2929
other = list(other)
3030
return self.__class__(super(FrozenList, self).__add__(other))
31-
31+
3232
__iadd__ = __add__
33-
33+
3434
def __sub__(self, other):
3535
other = set(other)
3636
temp = [x for x in self if x not in other]

pandas/tests/indexes/test_frozen.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ def test_add(self):
2222
result = (1, 2, 3) + self.container
2323
expected = FrozenList([1, 2, 3] + self.lst)
2424
self.check_result(result, expected)
25-
25+
2626
def test_sub(self):
2727
result = self.container - [2]
2828
expected = FrozenList([1, 3, 4, 5])
29-
self.check_result(result, expected)
30-
29+
self.check_result(result, expected)
30+
3131
def test_sub_dupe(self):
3232
result = FrozenList([1, 2, 3, 2]) - [2]
3333
expected = FrozenList([1, 3])
34-
self.check_result(result, expected)
35-
34+
self.check_result(result, expected)
35+
3636
def test_inplace(self):
3737
q = r = self.container
3838
q += [5]

0 commit comments

Comments
 (0)