Skip to content

Commit

Permalink
[Python PSM Interop] Use FrozenSet
Browse files Browse the repository at this point in the history
  • Loading branch information
XuanWang-Amos committed Jan 30, 2024
1 parent 71fa68f commit 86bd6b1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
from typing import (
DefaultDict,
Dict,
FrozenSet,
Iterable,
List,
Mapping,
Expand Down Expand Up @@ -84,7 +85,7 @@ class _StatsWatcher:
_no_remote_peer: int
_lock: threading.Lock
_condition: threading.Condition
_metadata_keys: frozenset
_metadata_keys: FrozenSet[str]
_include_all_metadata: bool
_metadata_by_peer: DefaultDict[
str, messages_pb2.LoadBalancerStatsResponse.MetadataByPeer
Expand Down

0 comments on commit 86bd6b1

Please sign in to comment.