You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A TypeError is raised from oauth2client because the method create_scoped from oauth2client.service_account.ServiceAccountCredentials is called with scopes=None although this parameter expects an iterable.
Maybe the SCOPE variable in connection.py (line 69) should be an empty set instead of a None object ? I don't know what would be the side effects of such a change.
The text was updated successfully, but these errors were encountered:
Well NVM this ticket this was a fail, just spotted i had an error in my imports, that made me instantiate the base client class instead of pubsub client class...
When executing:
A TypeError is raised from oauth2client because the method
create_scoped
fromoauth2client.service_account.ServiceAccountCredentials
is called withscopes=None
although this parameter expects an iterable.Maybe the
SCOPE
variable in connection.py (line 69) should be an empty set instead of a None object ? I don't know what would be the side effects of such a change.The text was updated successfully, but these errors were encountered: