Skip to content

Commit

Permalink
Fix bad text for sage zh result non soumis
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault committed Sep 18, 2023
1 parent d8a04c8 commit 7c8a829
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions envergo/moulinette/regulations/sage.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,17 @@ class ZoneHumideVieJaunay85(CriterionEvaluator):
("close_to", "big"): "action_requise_proche_interdit",
("close_to", "medium"): "non_soumis",
("close_to", "small"): "non_soumis",
("outside", "big"): "non_soumis",
("outside", "medium"): "non_soumis",
("outside", "small"): "non_soumis",
("outside", "big"): "non_soumis_dehors",
("outside", "medium"): "non_soumis_dehors",
("outside", "small"): "non_soumis_dehors",
}

RESULT_MATRIX = {
"interdit": RESULTS.interdit,
"action_requise_interdit": RESULTS.action_requise,
"action_requise_proche_interdit": RESULTS.action_requise,
"non_soumis": RESULTS.non_soumis,
"non_soumis_dehors": RESULTS.non_soumis,
}

def get_catalog_data(self):
Expand Down

0 comments on commit 7c8a829

Please sign in to comment.