Skip to content

Commit d2a3d55

Browse files
fix pep8
1 parent e96495f commit d2a3d55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/sparse/frame/test_frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def test_construct_unmatched_sparsedataframe(self, float_frame):
163163
N = len(sp)
164164
msg = 'Length of values does not match length of index'
165165
with pytest.raises(ValueError, match=msg):
166-
sp['foo'] = np.random.randn(N-1)
166+
sp['foo'] = np.random.randn(N - 1)
167167

168168
# GH 9272
169169
def test_constructor_empty(self):

0 commit comments

Comments
 (0)