]> gitweb.michael.orlitzky.com - djbdns-logparse.git/blobdiff - djbdns/dnscache.py
djbdns/{dnscache,tinydns}.py: explicit imports from djbdns.common.
[djbdns-logparse.git] / djbdns / dnscache.py
index 7fed987195c3d39b466512a57258f6b28411d818..a67060bb545ed0d57dbb5ab7da6345e9dc7a2fe3 100644 (file)
@@ -2,7 +2,7 @@
 import re
 
 from typing import Optional
-from djbdns.common import *
+from djbdns.common import convert_ip, query_type_name, timestamp_pat
 
 # The regex to match dnscache log lines.
 dnscache_log_re = re.compile(fr'({timestamp_pat}) (\w+)(.*)')