From b2ec4b7b76345283e6796899f13ae49e93a9899c Mon Sep 17 00:00:00 2001 From: Devin Smith Date: Fri, 21 Jan 2022 15:20:31 -0800 Subject: [PATCH] Remove Reference.ticket to match server (#1) --- src/deephaven/plugin/__init__.py | 2 +- src/deephaven/plugin/object/__init__.py | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/deephaven/plugin/__init__.py b/src/deephaven/plugin/__init__.py index 1832c38..05624d3 100644 --- a/src/deephaven/plugin/__init__.py +++ b/src/deephaven/plugin/__init__.py @@ -1,7 +1,7 @@ import abc from typing import Union, Type -__version__ = '0.0.1.dev4' +__version__ = '0.0.1.dev5' DEEPHAVEN_PLUGIN_ENTRY_KEY = 'deephaven.plugin' DEEPHAVEN_PLUGIN_REGISTRATION_CLASS = 'registration_cls' diff --git a/src/deephaven/plugin/object/__init__.py b/src/deephaven/plugin/object/__init__.py index b4a6867..76fc690 100644 --- a/src/deephaven/plugin/object/__init__.py +++ b/src/deephaven/plugin/object/__init__.py @@ -5,10 +5,9 @@ class Reference: - def __init__(self, index: int, type: Optional[str], ticket: bytes): + def __init__(self, index: int, type: Optional[str]): self._index = index self._type = type - self._ticket = ticket @property def index(self) -> int: @@ -18,10 +17,6 @@ def index(self) -> int: def type(self) -> Optional[str]: return self._type - @property - def ticket(self) -> bytes: - return self._ticket - class Exporter(abc.ABC): @abc.abstractmethod