DebasishDhal99 commited on
Commit
87b5262
1 Parent(s): f8706a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ second_heading = "YouTube Playlist Mismatch Calculator"
39
  second_description = "Enter two YouTube playlist links (without quotation marks) to compare their contents and find the mismatch."
40
  mismatch_outputs = gr.outputs.Textbox(label="Mismatch between two playlists")
41
 
42
- def playlist_mismatch_calculator(playlist_link_1, playlist_link_2):
43
  result = playlists_mismatch_func(playlist_link_1, playlist_link_2, output=output_options)
44
  playlist1name = result[2]
45
  playlist2name = result[3]
 
39
  second_description = "Enter two YouTube playlist links (without quotation marks) to compare their contents and find the mismatch."
40
  mismatch_outputs = gr.outputs.Textbox(label="Mismatch between two playlists")
41
 
42
+ def playlist_mismatch_calculator(playlist_link_1, playlist_link_2, output_options):
43
  result = playlists_mismatch_func(playlist_link_1, playlist_link_2, output=output_options)
44
  playlist1name = result[2]
45
  playlist2name = result[3]