Skip to content

Commit 560b0f4

Browse files
[core] docs: update dostrings for BaseQueryElements
1 parent 4568abd commit 560b0f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libs/garf_core/garf_core/query_editor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,15 +231,14 @@ class BaseQueryElements:
231231
"""Contains raw query and parsed elements.
232232
233233
Attributes:
234-
query_title: Title of the query that needs to be parsed.
235-
query_text: Text of the query that needs to be parsed.
234+
title: Title of the query that needs to be parsed.
235+
text: Text of the query that needs to be parsed.
236236
resource_name: Name of Google Ads API reporting resource.
237237
fields: Ads API fields that need to be fetched.
238238
column_names: Friendly names for fields which are used when saving data
239239
column_names: Friendly names for fields which are used when saving data
240240
customizers: Attributes of fields that need to be be extracted.
241241
virtual_columns: Attributes of fields that need to be be calculated.
242-
is_constant_resource: Whether resource considered a constant one.
243242
is_builtin_query: Whether query is built-in.
244243
"""
245244

@@ -256,6 +255,7 @@ class BaseQueryElements:
256255
virtual_columns: dict[str, VirtualColumn] = dataclasses.field(
257256
default_factory=dict
258257
)
258+
is_builtin_query: bool = False
259259

260260
def __eq__(self, other: BaseQueryElements) -> bool: # noqa: D105
261261
return (

0 commit comments

Comments
 (0)