Skip to content

Commit 6d5c865

Browse files
committed
fix type hint
1 parent 93a8a3f commit 6d5c865

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/examples/attrs_xarray_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _to_path(value: Any) -> Optional[Path]:
2020
return Path(value) if value else None
2121

2222

23-
def _parse_dim_names(shape: str) -> tuple[str]:
23+
def _parse_dim_names(shape: str) -> tuple[str, ...]:
2424
return tuple(
2525
[
2626
dim.strip()

0 commit comments

Comments
 (0)