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

I'm trying to eliminate the by default value for options to see if that's where the problem arises.

Browse files
Files changed (1) hide show
  1. playlists_mismatch.py +1 -1
playlists_mismatch.py CHANGED
@@ -7,7 +7,7 @@ from googleapiclient.errors import HttpError
7
  import datetime
8
  api_key = os.getenv("api_key_secret")
9
  youtube = build('youtube', 'v3', developerKey=api_key)
10
- def playlists_mismatch_func(playlistlink1, playlistlink2, output = 'link'):
11
  """Return the ids of videos that are only one of the playlists, and not in the other"""
12
 
13
  def extract_playlist_id(playlistlink):
 
7
  import datetime
8
  api_key = os.getenv("api_key_secret")
9
  youtube = build('youtube', 'v3', developerKey=api_key)
10
+ def playlists_mismatch_func(playlistlink1, playlistlink2, output):
11
  """Return the ids of videos that are only one of the playlists, and not in the other"""
12
 
13
  def extract_playlist_id(playlistlink):