Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Oct 20, 2024
1 parent a1ab553 commit f1232e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def _where_predicates(self) -> Union[ast.And, ast.Or]:
)
)

cohort_subquery = CohortPropertyGroupsSubQuery(self._team, self._filter, self.ttl_days).get_queries()
cohort_subquery = CohortPropertyGroupsSubQuery(self._team, self._filter, self.ttl_days).get_query()
if cohort_subquery:
optional_exprs.append(
ast.CompareOperation(
Expand Down Expand Up @@ -373,7 +373,7 @@ def __init__(self, team: Team, filter: SessionRecordingsFilter, ttl_days: int):
self._filter = filter
self._ttl_days = ttl_days

def get_queries(self) -> ast.SelectQuery | ast.SelectUnionQuery | None:
def get_query(self) -> ast.SelectQuery | ast.SelectUnionQuery | None:
if self.cohort_properties:
return parse_select(
self.raw_cohort_to_distinct_id,
Expand Down

0 comments on commit f1232e9

Please sign in to comment.