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 9048a04 commit 6943d7dCopy full SHA for 6943d7d
flareio/api_client.py
@@ -228,6 +228,9 @@ def scroll(
228
if method not in {"GET", "POST"}:
229
raise Exception("Scrolling is only supported for GET or POST")
230
231
+ params = dict(params) if params else None
232
+ json = dict(json) if json else None
233
+
234
from_in_params: bool = "from" in (params or {})
235
from_in_json: bool = "from" in (json or {})
236
0 commit comments