Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestoarbitrio committed Feb 23, 2024
1 parent 79e53b0 commit 3a8ea46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cr/cube/dimension.py
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ def anchor(self) -> Optional[Union[str, dict]]:
return self._element_dict.get("value", {}).get("references", {}).get("anchor")

@lazyproperty
def element_id(self) -> int:
def element_id(self) -> Union[int, str]:
"""int identifier for this category or subvariable."""
return _build_element_id(self._element_dict, self._dim_type)

Expand Down

0 comments on commit 3a8ea46

Please sign in to comment.