Skip to content

Commit

Permalink
fix(jupyter): Proper server.start() call
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed May 23, 2022
1 parent e56adbd commit e67625e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = trame
version = 2.0.0rc3
version = 2.0.0rc4
description = Trame, a framework to build applications in plain Python
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down
2 changes: 1 addition & 1 deletion trame/app/jupyter.py
Expand Up @@ -38,7 +38,7 @@ def on_ready(**_):
port=0,
open_browser=False,
show_connection_info=False,
disableLogging=True,
disable_logging=True,
timeout=0,
)
elif _server._running_stage == 1:
Expand Down
1 change: 1 addition & 0 deletions trame/assets/remote.py
Expand Up @@ -43,6 +43,7 @@ class AbstractRemoteFile:
AbstractRemoteFile provide infrastructure for RemoteFile where
only the method fetch() needs to be defined for a concreate implementation.
"""

def __init__(self, local_path=None, local_base=None):
# setup base path
self._base = os.getcwd()
Expand Down

0 comments on commit e67625e

Please sign in to comment.