Skip to content

Commit 52e81cb

Browse files
committed
Fix attempt
1 parent e302f4c commit 52e81cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tiledb/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ def _write_array(
918918
q.finalize()
919919

920920
fragment_info = self.last_fragment_info
921-
if fragment_info != False:
921+
if fragment_info is not False:
922922
if not isinstance(fragment_info, dict):
923923
raise ValueError(
924924
f"Expected fragment_info to be a dict, got {type(fragment_info)}"

0 commit comments

Comments
 (0)