From 56a93e05e98dc0165b19ad3acbd4be40d7a001ba Mon Sep 17 00:00:00 2001 From: dalthviz Date: Sat, 1 Apr 2017 19:46:07 -0500 Subject: [PATCH] Fixes code style issue. --- spyder_notebook/tests/test_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spyder_notebook/tests/test_plugin.py b/spyder_notebook/tests/test_plugin.py index 26ebc653..1fb5c573 100644 --- a/spyder_notebook/tests/test_plugin.py +++ b/spyder_notebook/tests/test_plugin.py @@ -86,7 +86,7 @@ def get_kernel_id(client): return (kernel_id, sessions_url) def is_kernel_up(kernel_id, sessions_url): - """Determines if the kernel with the id is up.""" + """Determine if the kernel with the id is up.""" sessions_req = requests.get(sessions_url).content.decode() sessions = json.loads(sessions_req)