fix: Remove print statement

pull/12/head
Raphaël Vinot 2019-01-15 17:47:18 +01:00
parent 9807fbe694
commit 42c0371e51
1 changed files with 0 additions and 1 deletions

View File

@ -223,7 +223,6 @@ class Querying():
return 0, [(0, 0)]
routed_asns = response['data']['countries'][0]['routed']
ranks = [self.asn_rank(asn, d, source, ipversion)['response'] for asn in routed_asns]
print(ranks)
to_return['response'] = [sum(ranks), zip(routed_asns, ranks)]
return to_return