Run pre-commit

This commit is contained in:
Jia Junjie
2021-01-14 20:52:59 +08:00
parent ca4fb3187f
commit 3db5eae9a9
2 changed files with 3 additions and 2 deletions

View File

@@ -374,7 +374,8 @@ class JupyterHub(Application):
300, help="Interval (in seconds) at which to update last-activity timestamps."
).tag(config=True)
proxy_check_interval = Integer(
5, help="DEPRECATED since version 0.8: Use ConfigurableHTTPProxy.check_running_interval"
5,
help="DEPRECATED since version 0.8: Use ConfigurableHTTPProxy.check_running_interval",
).tag(config=True)
service_check_interval = Integer(
60,

View File

@@ -453,7 +453,7 @@ class ConfigurableHTTPProxy(Proxy):
check_running_interval = Integer(
5,
help="Interval (in seconds) at which to check if the proxy is running.",
config=True
config=True,
)
@default('auth_token')