Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Workaround for object_type in py>=0.32.0" #665

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading