Skip to content

Commit

Permalink
Fixup. Format code with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 20, 2023
1 parent f26be8c commit 1d788ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pod/recorder/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,9 @@ def studio_pod(request):
request, "recorder/opencast-studio.html", {"access_not_allowed": True}
)
# Render the Opencast studio index file
opencast_studio_rendered = render_to_string("studio/index.html").replace('\r', '').replace('\n', '')
opencast_studio_rendered = (
render_to_string("studio/index.html").replace("\r", "").replace("\n", "")
)
head = opencast_studio_rendered[
opencast_studio_rendered.index("<head>")
+ len("<head>") : opencast_studio_rendered.index("</head>")
Expand Down

0 comments on commit 1d788ce

Please sign in to comment.