Skip to content

Commit 5254e00

Browse files
committed
remove unused imports; modify docstring for FeedsResult
1 parent cae89ce commit 5254e00

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

domaintools/results.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
Additionally, defines any custom result objects that may be used to enable more Pythonic interaction with endpoints.
44
"""
55

6-
import json
76
import logging
87
import httpx
98
import time
@@ -15,7 +14,6 @@
1514

1615
from itertools import zip_longest, chain
1716
from typing import Generator
18-
from httpx import Client
1917

2018
from domaintools_async import AsyncResults as Results
2119

@@ -210,7 +208,7 @@ class FeedsResults(Results):
210208
211209
Highlevel process:
212210
213-
httpx stream -> yield each json line -> check status code -> yield back data to client
211+
httpx stream -> check status code -> yield back data to client -> repeat if 206
214212
215213
Returns the generator object for feeds results.
216214
"""

0 commit comments

Comments
 (0)