Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Aug 19, 2022
1 parent 895f7d1 commit e552232
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ui-tests/jupyter_server_config.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from tempfile import mkdtemp

c.ServerApp.port = 8888
c.ServerApp.token = ""
c.ServerApp.password = ""
c.ServerApp.disable_check_xsrf = True
c.ServerApp.open_browser = False
c.ServerApp.root_dir = mkdtemp(prefix='galata-test-')
c.ServerApp.port = 8888 # noqa
c.ServerApp.token = "" # noqa
c.ServerApp.password = "" # noqa
c.ServerApp.disable_check_xsrf = True # noqa
c.ServerApp.open_browser = False # noqa
c.ServerApp.root_dir = mkdtemp(prefix='galata-test-') # noqa

c.LabApp.expose_app_in_browser = True
c.LabApp.expose_app_in_browser = True # noqa

0 comments on commit e552232

Please sign in to comment.