Skip to content

Commit

Permalink
Revert "Workaround for object_type in py>=0.32.0 (#656)" (#665)
Browse files Browse the repository at this point in the history
This reverts commit 76ab094.
  • Loading branch information
ktsitsi authored Oct 8, 2024
1 parent 3b957a7 commit 3e9ff2b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/tiledb/cloud/bioimg/ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def register_dataset_udf(
logger.debug("Object type of %s : %s", tiledb_uri, object_type)
if object_type == "group":
found = True
elif object_type is not None or object_type != "None":
elif object_type is not None:
raise ValueError(
f"Another object is already registered at '{tiledb_uri}'."
)
Expand Down
2 changes: 1 addition & 1 deletion src/tiledb/cloud/geospatial/ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -942,7 +942,7 @@ def register_dataset_udf(
object_type = tiledb.object_type(tiledb_uri)
if object_type == "array":
found = True
elif object_type is not None or object_type != "None":
elif object_type is not None:
raise ValueError(
f"Another object is already registered at '{tiledb_uri}'."
)
Expand Down
2 changes: 1 addition & 1 deletion src/tiledb/cloud/soma/ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def register_dataset_udf(
object_type = tiledb.object_type(tiledb_uri)
if object_type == "group":
found = True
elif object_type is not None or object_type != "None":
elif object_type is not None:
raise ValueError(
f"Another object is already registered at '{tiledb_uri}'."
)
Expand Down
2 changes: 1 addition & 1 deletion src/tiledb/cloud/vcf/ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def register_dataset_udf(
object_type = tiledb.object_type(tiledb_uri)
if object_type == "group":
found = True
elif object_type is not None or object_type != "None":
elif object_type is not None:
raise ValueError(
f"Another object is already registered at '{tiledb_uri}'."
)
Expand Down

0 comments on commit 3e9ff2b

Please sign in to comment.