From 6960454443dc2384afa6f5f5890202a570407eee Mon Sep 17 00:00:00 2001 From: booboy Date: Thu, 21 Sep 2017 22:57:45 -0500 Subject: [PATCH] setup __init__ function but did not add anything init yet --- whois.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/whois.py b/whois.py index 88d7b27..4b1e3af 100644 --- a/whois.py +++ b/whois.py @@ -6,6 +6,9 @@ class Whois(object): ''' The Whois class which will handle all whois lookups via python''' + def __init__(self): + pass + def lookup(self, query, remote): '''Perform a lookup against remote for query''' s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)