Skip to content

Commit

Permalink
Remove Reference.ticket to match server (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith authored Jan 21, 2022
1 parent 8e79794 commit b2ec4b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/deephaven/plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
7 changes: 1 addition & 6 deletions src/deephaven/plugin/object/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit b2ec4b7

Please sign in to comment.