Skip to content

Commit

Permalink
Merge pull request #822 from no23reason/dho-cq-812-exec-request
Browse files Browse the repository at this point in the history
chore: remove obsolete executionRequest
  • Loading branch information
no23reason authored Oct 1, 2024
2 parents 0f110df + 5d088ad commit bd421b5
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -520,12 +520,6 @@ class ExecutionContext:
The start of the week. Either "monday" or "sunday".
"""

execution_request: ExecutionRequest
"""
The execution request that the FlexFun should process.
DEPRECATED: Use ReportExecutionRequest or LabelElementsExecutionRequest instead.
"""

attributes: list[ExecutionContextAttribute]
"""
All the attributes that are part of the execution request.
Expand Down Expand Up @@ -563,7 +557,6 @@ def from_dict(d: dict) -> "ExecutionContext":
timestamp=d.get("timestamp"),
timezone=d.get("timezone"),
week_start=d.get("weekStart"),
execution_request=ExecutionRequest.from_dict(d["executionRequest"]),
report_execution_request=ReportExecutionRequest.from_dict(d.get("reportExecutionRequest")),
label_elements_execution_request=LabelElementsExecutionRequest.from_dict(
d.get("labelElementsExecutionRequest")
Expand Down

0 comments on commit bd421b5

Please sign in to comment.