Skip to content

Commit

Permalink
style(dash): fix stupid string concat
Browse files Browse the repository at this point in the history
black no longer splits this line so merge it
  • Loading branch information
vEnhance committed Sep 12, 2023
1 parent 8d04f99 commit 2558a21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def submit_pset(request: HttpRequest, student_pk: int) -> HttpResponse:
pset.save()
messages.success(
request,
"The problem set is submitted successfully " "and is pending review!",
"The problem set is submitted successfully and is pending review!",
)
logger.log(
VERBOSE_LOG_LEVEL,
Expand Down

0 comments on commit 2558a21

Please sign in to comment.