Skip to content

Commit 7f30de1

Browse files
author
Doug Blank
committed
Removed unneeded properties
1 parent f74add6 commit 7f30de1

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

jupyter_client/runapp.py

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,6 @@ class RunApp(JupyterApp, JupyterConsoleApp):
5454
aliases = Dict(aliases)
5555
frontend_aliases = Any(frontend_aliases)
5656
frontend_flags = Any(frontend_flags)
57-
session_id = Unicode()
58-
include_other_output = Bool(False, config=True,
59-
help="""Whether to include output from clients
60-
other than this one sharing the same kernel.
61-
62-
Outputs are not displayed until enter is pressed.
63-
"""
64-
)
65-
kernel_info = {}
6657
kernel_timeout = Float(60, config=True,
6758
help="""Timeout for giving up on a kernel (in seconds).
6859
@@ -80,7 +71,7 @@ def parse_command_line(self, argv=None):
8071

8172
@catch_config_error
8273
def initialize(self, argv=None):
83-
self.log.debug("jupyter run initialize...")
74+
self.log.debug("jupyter run: initialize...")
8475
super(RunApp, self).initialize(argv)
8576
JupyterConsoleApp.initialize(self)
8677
signal.signal(signal.SIGINT, self.handle_sigint)
@@ -111,10 +102,10 @@ def init_kernel_info(self):
111102
return
112103

113104
def start(self):
114-
self.log.debug("jupyter run start...")
105+
self.log.debug("jupyter run: starting...")
115106
super(RunApp, self).start()
116107
for filename in self.filenames_to_run:
117-
self.log.debug("jupyter run: running `%s`" % filename)
108+
self.log.debug("jupyter run: executing `%s`" % filename)
118109
cell = open(filename).read()
119110
self.run_cell(cell)
120111

0 commit comments

Comments
 (0)