Skip to content

Commit

Permalink
Rename property of parttion location key
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed Oct 7, 2024
1 parent 2ea7c06 commit a94a3dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions py/server/deephaven/experimental/partitioned_table_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ class PartitionedTableLocationKey:
the backend service to fetch the partition data.
"""
def __init__(self, pt_location_key: Any):
self._pt_table_key = pt_location_key
self._pt_location_key = pt_location_key

@property
def pt_table_key(self) -> Any:
return self._pt_table_key
def pt_location_key(self) -> Any:
return self._pt_location_key


class PartitionedTableServiceBackend(ABC):
Expand Down

0 comments on commit a94a3dd

Please sign in to comment.