Skip to content

Commit

Permalink
fix: warning SyntaxWarning: "is not" with a literal. Did you mean "!="?
Browse files Browse the repository at this point in the history
  • Loading branch information
rmmancom committed Jun 28, 2023
1 parent d6aa34b commit 3939adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/chunkstore/test_chunkstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def helper(chunkstore_lib, chunk_size, name, df, append):

chunkstore_lib.update(name, append)

if chunk_size is not 'A':
if chunk_size != 'A':
assert_frame_equal_(chunkstore_lib.read(name), pd.concat([df, append]))
else:
# chunksize is the entire DF, so we'll overwrite the whole thing
Expand Down

0 comments on commit 3939adb

Please sign in to comment.