We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0515084 commit 192232eCopy full SHA for 192232e
domaintools/base_results.py
@@ -143,7 +143,6 @@ def _make_request(self):
143
144
def _get_results(self):
145
wait_for = self._wait_time()
146
- print(f"JD: waitfor: {wait_for}")
147
if self.api.rate_limit and (wait_for is None or self.product == "account-information"):
148
data = self._make_request()
149
status_code = data.status_code if self.product not in FEEDS_PRODUCTS_LIST else 200
@@ -161,7 +160,6 @@ def _get_results(self):
161
160
162
if wait_for > 0:
163
log.info("Sleeping for [%s] prior to requesting [%s].", wait_for, self.product)
164
- print("Sleeping for [%s] prior to requesting [%s].", wait_for, self.product)
165
time.sleep(wait_for)
166
return self._make_request()
167
0 commit comments