We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 413b54f commit 38fc989Copy full SHA for 38fc989
libs/core/garf_core/api_clients.py
@@ -39,7 +39,7 @@
39
class GarfApiResponse(pydantic.BaseModel):
40
"""Base class for specifying response."""
41
42
- results: list[ApiResponseRow]
+ results: list[ApiResponseRow | Any]
43
44
def __bool__(self) -> bool:
45
return bool(self.results)
libs/core/garf_core/parsers.py
@@ -44,10 +44,11 @@ class BaseParser(abc.ABC):
"""An interface for all parsers to implement."""
46
def __init__(
47
- self, query_specification: query_editor.BaseQueryElements
+ self, query_specification: query_editor.BaseQueryElements, **kwargs: str
48
) -> None:
49
"""Initializes BaseParser."""
50
self.query_spec = query_specification
51
+ self.kwargs = kwargs
52
53
def parse_response(
54
self,
0 commit comments