Skip to content

Commit

Permalink
Update intercept in context.py
Browse files Browse the repository at this point in the history
  • Loading branch information
liunelson committed Nov 26, 2024
1 parent 40ab221 commit 57f4ce8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/askem_beaker/contexts/mira_model_edit/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,15 +547,19 @@ async def stratify_request(self, message):
key = content.get("key")
strata = content.get("strata")
concepts_to_stratify = content.get("concepts_to_stratify")
concepts_to_preserve = content.get("concepts_to_preserve")
params_to_stratify = content.get("params_to_stratify")
params_to_preserve = content.get("params_to_preserve")
cartesian_control = content.get("cartesian_control")
structure = content.get("structure")

stratify_code = self.get_code("stratify", {
"key": key,
"strata": strata,
"concepts_to_stratify": concepts_to_stratify,
"concepts_to_preserve": concepts_to_preserve,
"params_to_stratify": params_to_stratify,
"params_to_stratify": params_to_preserve,
"cartesian_control": cartesian_control,
"structure": structure
})
Expand Down

0 comments on commit 57f4ce8

Please sign in to comment.