[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot]
2022-10-10 15:44:35 +00:00
parent 3e0ee49ce8
commit 89745c002b
5 changed files with 10 additions and 14 deletions

View File

@@ -10,7 +10,7 @@ from jupyter_client.localinterfaces import public_ips
def create_dir_hook(spawner): def create_dir_hook(spawner):
""" Create directory """ """Create directory"""
username = spawner.user.name # get the username username = spawner.user.name # get the username
volume_path = os.path.join('/volumes/jupyterhub', username) volume_path = os.path.join('/volumes/jupyterhub', username)
if not os.path.exists(volume_path): if not os.path.exists(volume_path):
@@ -20,7 +20,7 @@ def create_dir_hook(spawner):
def clean_dir_hook(spawner): def clean_dir_hook(spawner):
""" Delete directory """ """Delete directory"""
username = spawner.user.name # get the username username = spawner.user.name # get the username
temp_path = os.path.join('/volumes/jupyterhub', username, 'temp') temp_path = os.path.join('/volumes/jupyterhub', username, 'temp')
if os.path.exists(temp_path) and os.path.isdir(temp_path): if os.path.exists(temp_path) and os.path.isdir(temp_path):

View File

@@ -42,7 +42,7 @@ class GroupListAPIHandler(_GroupAPIHandler):
@admin_only @admin_only
async def post(self): async def post(self):
"""POST creates Multiple groups """ """POST creates Multiple groups"""
model = self.get_json_body() model = self.get_json_body()
if not model or not isinstance(model, dict) or not model.get('groups'): if not model or not isinstance(model, dict) or not model.get('groups'):
raise web.HTTPError(400, "Must specify at least one group to create") raise web.HTTPError(400, "Must specify at least one group to create")

View File

@@ -1505,14 +1505,10 @@ class UserUrlHandler(BaseHandler):
# if request is expecting JSON, assume it's an API request and fail with 503 # if request is expecting JSON, assume it's an API request and fail with 503
# because it won't like the redirect to the pending page # because it won't like the redirect to the pending page
if ( if get_accepted_mimetype(
get_accepted_mimetype(
self.request.headers.get('Accept', ''), self.request.headers.get('Accept', ''),
choices=['application/json', 'text/html'], choices=['application/json', 'text/html'],
) ) == 'application/json' or 'api' in user_path.split('/'):
== 'application/json'
or 'api' in user_path.split('/')
):
self._fail_api_request(user_name, server_name) self._fail_api_request(user_name, server_name)
return return
@@ -1594,7 +1590,7 @@ class UserUrlHandler(BaseHandler):
if redirects: if redirects:
self.log.warning("Redirect loop detected on %s", self.request.uri) self.log.warning("Redirect loop detected on %s", self.request.uri)
# add capped exponential backoff where cap is 10s # add capped exponential backoff where cap is 10s
await asyncio.sleep(min(1 * (2 ** redirects), 10)) await asyncio.sleep(min(1 * (2**redirects), 10))
# rewrite target url with new `redirects` query value # rewrite target url with new `redirects` query value
url_parts = urlparse(target) url_parts = urlparse(target)
query_parts = parse_qs(url_parts.query) query_parts = parse_qs(url_parts.query)

View File

@@ -223,7 +223,7 @@ class User(Base):
class Spawner(Base): class Spawner(Base):
""""State about a Spawner""" """ "State about a Spawner"""
__tablename__ = 'spawners' __tablename__ = 'spawners'

View File

@@ -452,7 +452,7 @@ class SingleUserNotebookAppMixin(Configurable):
i, i,
RETRIES, RETRIES,
) )
await asyncio.sleep(min(2 ** i, 16)) await asyncio.sleep(min(2**i, 16))
else: else:
break break
else: else: