Skip to content

Commit

Permalink
Allow mvs server to set verbatim option
Browse files Browse the repository at this point in the history
  • Loading branch information
Bachibouzouk committed Apr 28, 2024
1 parent 50998d1 commit a64258b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/multi_vector_simulator/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,9 @@ def run_simulation(json_dict, epa_format=True, **kwargs):
logging.debug("Convert results to json")

if epa_format is True:
epa_dict_values = data_parser.convert_mvs_params_to_epa(dict_values)
epa_dict_values = data_parser.convert_mvs_params_to_epa(
dict_values, verbatim=verbatim
)

json_values = F0.store_as_json(epa_dict_values)
answer = json.loads(json_values)
Expand Down

0 comments on commit a64258b

Please sign in to comment.