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
It is because of the code below, where self.geo = geo or self.geo. If self.geo was set to any country in previous build, then if next build will have geo as empty string (for worldwide), it won't be set to empty string, instead it will be the country from previous build.
defbuild_payload(self, kw_list, cat=0, timeframe='today 5-y', geo='',
gprop=''):
"""Create the payload for related queries, interest over time and interest by region"""ifgpropnotin ['', 'images', 'news', 'youtube', 'froogle']:
raiseValueError('gprop must be empty (to indicate web), images, news, youtube, or froogle')
self.kw_list=kw_listself.geo=geoorself.geo
The text was updated successfully, but these errors were encountered:
It is because of the code below, where self.geo = geo or self.geo. If self.geo was set to any country in previous build, then if next build will have geo as empty string (for worldwide), it won't be set to empty string, instead it will be the country from previous build.
The text was updated successfully, but these errors were encountered: