Skip to content

Commit

Permalink
appended underscore to class variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemulf committed Mar 21, 2022
1 parent ef4a99c commit e9fabed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyclient/pydeephaven/_console_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def start_console(self):
try:
result_id = self.session.make_ticket()
response = self._grpc_console_stub.StartConsole(
console_pb2.StartConsoleRequest(result_id=result_id, session_type=self.session.session_type),
console_pb2.StartConsoleRequest(result_id=result_id, session_type=self.session._session_type),
metadata=self.session.grpc_metadata)
self.console_id = response.result_id
except Exception as e:
Expand Down
2 changes: 1 addition & 1 deletion pyclient/pydeephaven/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(self, host: str = None, port: int = None, never_timeout: bool = Tru
self._tables = {}
self._never_timeout = never_timeout
self._keep_alive_timer = None
self.session_type = session_type
self._session_type = session_type

self._connect()

Expand Down

0 comments on commit e9fabed

Please sign in to comment.