Skip to content

Commit a59898d

Browse files
committed
style: Fix lint
1 parent 1de1d4e commit a59898d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cms/djangoapps/contentstore/helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def import_staged_content_from_user_clipboard(parent_key: UsageKey, request) ->
306306
if usage_key.block_type == 'video':
307307
# The edx_video_id must always be new so as not
308308
# to interfere with the data of the copied block
309-
new_xblock.edx_video_id = create_external_video(display_name='external video')
309+
new_xblock.edx_video_id = create_external_video(display_name='external video')
310310
store.update_item(new_xblock, request.user.id)
311311

312312
# Now handle static files that need to go into Files & Uploads.

xmodule/video_block/transcripts_utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -1041,6 +1041,7 @@ def get_transcript_from_contentstore(video, language, output_format, transcripts
10411041

10421042
return transcript_content, transcript_name, Transcript.mime_types[output_format]
10431043

1044+
10441045
def build_components_import_path(usage_key, file_path):
10451046
"""
10461047
Build components import path

0 commit comments

Comments
 (0)