Skip to content

Commit

Permalink
fix(api-layers): remove unnecessary parameter that causes tests to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
hdinia committed Aug 2, 2023
1 parent 3f88166 commit 052a9f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion antarest/study/business/area_management.py
Expand Up @@ -339,7 +339,7 @@ def remove_layer(self, study: RawStudy, layer_id: str) -> None:
layers = file_study.tree.get(["layers", "layers", "layers"])

if layer_id not in layers:
raise LayerNotFound(layer_id)
raise LayerNotFound

del layers[layer_id]

Expand Down

0 comments on commit 052a9f3

Please sign in to comment.