From 6679891464d5d9d0c9ef8d99da86fa44148f1713 Mon Sep 17 00:00:00 2001 From: Luis Rodriguez Date: Thu, 16 May 2019 09:31:22 -0700 Subject: [PATCH] Give space to inline comments --- notebook/tests/selenium/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notebook/tests/selenium/utils.py b/notebook/tests/selenium/utils.py index 1097915e2..0e95d230a 100644 --- a/notebook/tests/selenium/utils.py +++ b/notebook/tests/selenium/utils.py @@ -446,15 +446,15 @@ def validate_dualmode_state(notebook, mode, index): #validate mode assert mode == keyboard_mode #keyboard mode is correct - assert is_focused_on(None)#no focused cells + assert is_focused_on(None) #no focused cells - assert is_only_cell_edit(None)#no cells in edit mode + assert is_only_cell_edit(None) #no cells in edit mode elif mode == 'edit': #Are the notebook and keyboard manager in edit mode? assert mode == keyboard_mode #keyboard mode is correct - assert is_focused_on(index)#The specified cell is focused + assert is_focused_on(index) #The specified cell is focused assert is_only_cell_edit(index) #The specified cell is the only one in edit mode