Skip to content

Commit 09e8fd4

Browse files
committed
lint issue
1 parent f626e69 commit 09e8fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/test_missing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def test_fillna_categorical_nan(self):
322322
res = df.fillna(df.median())
323323
v_exp = [np.nan, np.nan, np.nan]
324324
df_exp = DataFrame({"cats": [2, 2, 2], "vals": v_exp},
325-
dtype='category')
325+
dtype='category')
326326
tm.assert_frame_equal(res, df_exp)
327327

328328
result = df.cats.fillna(np.nan)

0 commit comments

Comments
 (0)