Skip to content

Commit ca0dc37

Browse files
committed
removing print statement
1 parent 32eb961 commit ca0dc37

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

ipinfo/handler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,6 @@ def getIterativeBatchDetails(
358358
return handler_utils.return_or_fail(raise_on_fail, e, results)
359359

360360
json_response = response.json()
361-
print(f"JSON: {json_response}")
362361
for ip_address, details in json_response.items():
363362
self.cache[cache_key(ip_address)] = details
364363

tests/handler_async_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,7 @@ async def test_get_details():
113113

114114
def _prepare_batch_test():
115115
"""Helper for preparing batch test cases."""
116-
token = "godmode666"
117-
# os.environ.get("IPINFO_TOKEN", "")
116+
token = os.environ.get("IPINFO_TOKEN", "")
118117
if not token:
119118
pytest.skip("token required for batch tests")
120119
handler = AsyncHandler(token)

0 commit comments

Comments
 (0)