Skip to content

Commit 192232e

Browse files
committed
IDEV-2020: Remove debug prints.
1 parent 0515084 commit 192232e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

domaintools/base_results.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ def _make_request(self):
143143

144144
def _get_results(self):
145145
wait_for = self._wait_time()
146-
print(f"JD: waitfor: {wait_for}")
147146
if self.api.rate_limit and (wait_for is None or self.product == "account-information"):
148147
data = self._make_request()
149148
status_code = data.status_code if self.product not in FEEDS_PRODUCTS_LIST else 200
@@ -161,7 +160,6 @@ def _get_results(self):
161160

162161
if wait_for > 0:
163162
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)
165163
time.sleep(wait_for)
166164
return self._make_request()
167165

0 commit comments

Comments
 (0)