Skip to content

Commit

Permalink
AD: Small modification on main_utilities.py so that parameters relate…
Browse files Browse the repository at this point in the history
…d to forward_models are properly initialized
  • Loading branch information
Allan Denis committed Jan 17, 2025
1 parent 33bb314 commit a5f0818
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ForMoSA/main_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ def __init__(self, config_file_path):
self.fm_continuum_res = [config['config_forward_models']['fm_continuum_res']]
self.bounds_lsq = [config['config_forward_models']['bounds_lsq']]
except KeyError:
self.fm_type = 'NA'
self.fm_continuum_res = 'NA'
self.bounds_lsq = 'NA'
self.fm_type = ['NA']
self.fm_continuum_res = ['NA']
self.bounds_lsq = ['NA']

else:
# [config_adapt] (5)
Expand Down

0 comments on commit a5f0818

Please sign in to comment.