Skip to content

Commit

Permalink
fix BoundedTrieData get_result return type hint
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Kinard <[email protected]>
  • Loading branch information
Polber committed Dec 13, 2024
1 parent f92dde1 commit 88398f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/metrics/cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ def __repr__(self) -> str:
def get_cumulative(self) -> "BoundedTrieData":
return copy.deepcopy(self)

def get_result(self) -> set[tuple]:
def get_result(self) -> Set[tuple]:
if self._root is None:
if self._singleton is None:
return set()
Expand Down

0 comments on commit 88398f3

Please sign in to comment.