Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
activesoull committed Sep 6, 2024
1 parent 9454e53 commit e25485e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deeplake/core/meta/tensor_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def _validate_htype_overwrites(htype: str, htype_overwrite: dict):
raise MeshTensorMetaMissingRequiredValue(
actual_htype, "sample_compression", compr_list=supported_compressions # type: ignore
)
if sc not in supported_compressions:
if sc not in supported_compressions: # type: ignore
raise UnsupportedCompressionError(sc, htype=htype)

elif htype in ("audio", "video", "point_cloud", "nifti"):
Expand Down

0 comments on commit e25485e

Please sign in to comment.