1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

PEP8 cleanup

This commit is contained in:
Jeremy Stretch
2016-07-29 14:46:29 -04:00
parent d09ede8d1f
commit 1bbe7f95d6
3 changed files with 5 additions and 5 deletions

View File

@ -151,7 +151,7 @@ class AggregateListView(ObjectListView):
if a.prefix.version == 4:
ipv4_total += a.prefix.size
elif a.prefix.version == 6:
ipv6_total += a.prefix.size / 2**64
ipv6_total += a.prefix.size / 2 ** 64
return {
'ipv4_total': ipv4_total,