]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
lint
authorBob Halley <halley@dnspython.org>
Fri, 19 Jun 2020 14:56:39 +0000 (07:56 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 19 Jun 2020 14:56:39 +0000 (07:56 -0700)
dns/rdtypes/ANY/LOC.py

index 4099c0c9689007cd0bbb1254f64620d831f5d3dd..31065bbabe6a71d2901ce179d16ae780de2ec906 100644 (file)
@@ -29,10 +29,10 @@ _default_hprec = 1000000.0
 _default_vprec = 1000.0
 
 # for use by from_wire()
-_MAX_LATITUDE = 0x80000000 + 90*3600000
-_MIN_LATITUDE = 0x80000000 - 90*3600000
-_MAX_LONGITUDE = 0x80000000 + 180*3600000
-_MIN_LONGITUDE = 0x80000000 - 180*3600000
+_MAX_LATITUDE = 0x80000000 + 90 * 3600000
+_MIN_LATITUDE = 0x80000000 - 90 * 3600000
+_MAX_LONGITUDE = 0x80000000 + 180 * 3600000
+_MIN_LONGITUDE = 0x80000000 - 180 * 3600000
 
 # pylint complains about division since we don't have a from __future__ for
 # it, but we don't care about python 2 warnings, so turn them off.