Skip to content

Commit 90ca4e6

Browse files
Fix mypy: add type parameters to dict in column_labels return type
1 parent 792f1ed commit 90ca4e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/table/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ def table_labels(self) -> dict[str, str]:
10751075
return self.labels.get("table", {})
10761076

10771077
@property
1078-
def column_labels(self) -> list[dict]:
1078+
def column_labels(self) -> list[dict[str, Any]]:
10791079
"""Column-level labels from catalog enrichment."""
10801080
return self.labels.get("columns", [])
10811081

0 commit comments

Comments
 (0)