Added space after # to conform to pep8.

This commit is contained in:
NotoriousRebel 2019-09-12 03:19:57 -04:00
parent c86d663e6f
commit 62a62a339c

View file

@ -56,7 +56,7 @@ def search(text: str) -> bool:
for line in text.strip().splitlines():
if 'This page appears when Google automatically detects requests coming from your computer network' in line \
or 'http://www.google.com/sorry/index' in line or 'https://www.google.com/sorry/index' in line:
#print('\tGoogle is blocking your IP due to too many automated requests, wait or change your IP')
# print('\tGoogle is blocking your IP due to too many automated requests, wait or change your IP')
return True
return False