Skip to content

Commit

Permalink
fix error with payload generation
Browse files Browse the repository at this point in the history
  • Loading branch information
anisbhsl committed Oct 12, 2023
1 parent 9f4c021 commit badcb62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pynequa/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Dict, List
from typing import Dict, List, Optional


class TreeParams:
Expand Down Expand Up @@ -79,7 +79,7 @@ class QueryParams:
aggregations: List[str] = []
order_by: str = None
group_by: str = None
advanced: AdvancedParams = AdvancedParams()
advanced: Optional[AdvancedParams] = None

def __init__(self) -> None:
pass
Expand Down

0 comments on commit badcb62

Please sign in to comment.