Skip to content

Commit

Permalink
fix: fix property signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
recalcitrantsupplant authored and lalewis1 committed Nov 20, 2024
1 parent 770f010 commit 9c2df0e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions prez/services/query_generation/search_fuseki_fts.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,13 @@ def order_by_direction(self):

@property
def limit(self):
return self.solution_modifier.limit_offset.limit_clause.limit
return self.where_clause.group_graph_pattern.content.solution_modifier.limit_offset.limit_clause.limit

@property
def offset(self):
return self.solution_modifier.limit_offset.offset_clause.offset
return (
self.where_clause.group_graph_pattern.content.solution_modifier.limit_offset.offset_clause.offset
)

@property
def tss_list(self):
Expand Down

0 comments on commit 9c2df0e

Please sign in to comment.