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
from gnewsclient import gnewsclient
client = gnewsclient.NewsClient()
or: client = gnewsclient.NewsClient(topic='Top Stories')
then: client.get_news()
returned []
In gnewsclient.py file, function get_news(self), this line: if self.topic is None or self.topic is 'Top Stories':
should be fixed by this line: if self.topic == None or self.topic == 'Top Stories':
The text was updated successfully, but these errors were encountered:
For example:
or:
client = gnewsclient.NewsClient(topic='Top Stories')
then:
client.get_news()
returned []
In gnewsclient.py file, function
get_news(self)
, this line:if self.topic is None or self.topic is 'Top Stories':
should be fixed by this line:
if self.topic == None or self.topic == 'Top Stories':
The text was updated successfully, but these errors were encountered: