Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Oct 4, 2024
1 parent b8021f2 commit fc2981b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jhub_apps/service/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,6 @@ def _check_multiple_jlab_allowed_if_framework_jlab(user_options: UserOptions):
is_jupyterlab = user_options.framework == Framework.jupyterlab.value
if is_jupyterlab and not config.JAppsConfig.allow_multiple_jupyterlab:
raise HTTPException(
detail=f"Multiple JupyterLabs are not allowed on this deployment, please contact admin.",
detail="Multiple JupyterLabs are not allowed on this deployment, please contact admin.",
status_code=status.HTTP_403_FORBIDDEN,
)

0 comments on commit fc2981b

Please sign in to comment.