summaryrefslogtreecommitdiff
path: root/dns/rdtypes/ANY
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-06-19 07:56:39 -0700
committerBob Halley <halley@dnspython.org>2020-06-19 07:56:39 -0700
commit0779dbf3dc29593489d93d15e63213ff5eb4e92e (patch)
treec76d17cca6918679ca2e8510e71cc0982c843fbc /dns/rdtypes/ANY
parenta05eb0d6e506c3304c0f80304e4066226833e875 (diff)
downloaddnspython-0779dbf3dc29593489d93d15e63213ff5eb4e92e.tar.gz
lint
Diffstat (limited to 'dns/rdtypes/ANY')
-rw-r--r--dns/rdtypes/ANY/LOC.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/dns/rdtypes/ANY/LOC.py b/dns/rdtypes/ANY/LOC.py
index 4099c0c..31065bb 100644
--- a/dns/rdtypes/ANY/LOC.py
+++ b/dns/rdtypes/ANY/LOC.py
@@ -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.