Skip to content

Commit

Permalink
Fix mh_style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
BSchilperoort committed Jan 3, 2024
1 parent 8b06bf0 commit a264713
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/STEMMUS_SCOPE_exe.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,11 @@ function STEMMUS_SCOPE_exe(config_file, runMode)
while ~strcmp(bmiMode, "finalize")
bmiMode = input("\nFinished command. Select BMI mode: ", "s");


if startsWith(bmiMode, "initialize ")
% Get config file:
CFG = erase(bmiMode, "initialize ");
CFG = strtrim(CFG); % remove leading and trailing whitespace
CFG = erase(CFG, '"') % remove quotes
CFG = erase(CFG, '"'); % remove quotes

bmiMode = "initialize";

Expand Down

0 comments on commit a264713

Please sign in to comment.