Skip to content

Commit f919f98

Browse files
committed
🙈 fix lint warnings
1 parent 3dcf0ad commit f919f98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def test_timedelta_to_str():
8686
assert round_td_str(pd.Timedelta("1128.9us")) == "1ms"
8787
assert round_td_str(pd.Timedelta("128.9us")) == "129us"
8888
assert round_td_str((pd.Timedelta("14ns"))) == "14ns"
89-
assert round_td_str((pd.Timedelta("0ns"))) == None
89+
assert round_td_str((pd.Timedelta("0ns"))) is None
9090

9191

9292
def test_round_int_str():
@@ -110,4 +110,4 @@ def test_round_int_str():
110110
assert round_number_str(950_001) == "1M"
111111
assert round_number_str(1_950_001) == "2M"
112112
assert round_number_str(111_950_001) == "112M"
113-
assert round_number_str(0) == None
113+
assert round_number_str(0) is None

0 commit comments

Comments
 (0)