From ee0ea832c2bbd973df91b59327a7aba7e635e186 Mon Sep 17 00:00:00 2001 From: Gregory Wagner Date: Thu, 28 Mar 2024 10:56:09 -0700 Subject: [PATCH] Try to please the formatter because it is my master and I am nothing --- src/solver/model_getters.jl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/solver/model_getters.jl b/src/solver/model_getters.jl index 322a6e86f9..03b1a01bd1 100644 --- a/src/solver/model_getters.jl +++ b/src/solver/model_getters.jl @@ -16,8 +16,10 @@ function get_model_config(parsed_args) valid_configurations = ("sphere", "column", "box", "plane") if !(config ∈ valid_configurations) - error_message = string("config = $config is not one of the ", - "valid configurations $valid_configurations") + error_message = string( + "config = $config is not one of the ", + "valid configurations $valid_configurations" + ) throw(ArgumentError(error_message)) end