chg :[virustotal_public] make flake8 happy

pull/513/head v2.4.147
Alexandre Dulaunoy 2021-06-11 14:54:07 +02:00
parent 3e53398dee
commit 605231e089
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,7 @@ moduleconfig = ['apikey', 'proxy_host', 'proxy_port', 'proxy_username', 'proxy_p
LOGGER = logging.getLogger('virus_total_public')
LOGGER.setLevel(logging.INFO)
class VirusTotalParser():
def __init__(self):
super(VirusTotalParser, self).__init__()
@ -107,9 +108,10 @@ class VirusTotalParser():
'http': f'{scheme}://{host}',
'https': f'{scheme}://{host}'
}
self.proxies=proxies
self.proxies = proxies
return True
class DomainQuery(VirusTotalParser):
def __init__(self, apikey, attribute):
super(DomainQuery, self).__init__()