Skip to content

Commit 4d08758

Browse files
committed
ignore weird attr-defined error
1 parent fa7fb8f commit 4d08758

File tree

1 file changed

+1
-1
lines changed
  • virtualizarr/readers/hdf

1 file changed

+1
-1
lines changed

virtualizarr/readers/hdf/hdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _dataset_chunk_manifest(
125125
key_list = [0] * (len(dataset.shape) or 1)
126126
key = ".".join(map(str, key_list))
127127

128-
chunk_entry = ChunkEntry.with_validation(
128+
chunk_entry: ChunkEntry = ChunkEntry.with_validation( # type: ignore[attr-defined]
129129
path=path, offset=dsid.get_offset(), length=dsid.get_storage_size()
130130
)
131131
chunk_key = ChunkKey(key)

0 commit comments

Comments
 (0)