From eb48635ce59de9edc3b132f1eb838c0c9aa30633 Mon Sep 17 00:00:00 2001 From: Sebdraven Date: Fri, 7 May 2021 14:07:18 +0200 Subject: [PATCH] remove print and variable unsuable --- misp_modules/modules/expansion/onyphe.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/misp_modules/modules/expansion/onyphe.py b/misp_modules/modules/expansion/onyphe.py index 874eff4..eba3564 100644 --- a/misp_modules/modules/expansion/onyphe.py +++ b/misp_modules/modules/expansion/onyphe.py @@ -46,7 +46,6 @@ class OnypheClient: self.__summary_hostname() def __summary_ip(self): - print('ip') results = self.onyphe_client.summary_ip(self.attribute['value']) if 'results' in results: for r in results['results']: @@ -67,11 +66,9 @@ class OnypheClient: self.__get_object_domain_ip(hostname, 'domain') if 'issuer' in r: - issuer = r['issuer'] self.__get_object_certificate(r) def __summary_domain(self): - print('domain') results = self.onyphe_client.summary_domain(self.attribute['value']) if 'results' in results: for r in results['results']: