Skip to content

Commit

Permalink
ex16 - bug for MN runs corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
rpoleski committed Jun 6, 2024
1 parent da1c56d commit 81fc673
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/example_16/ulens_model_fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
except Exception:
raise ImportError('\nYou have to install MulensModel first!\n')

__version__ = '0.36.2'
__version__ = '0.36.3'


class UlensModelFit(object):
Expand Down Expand Up @@ -492,6 +492,9 @@ def _check_starting_parameters_type(self):
Check if starting parameters are read from file or
will be drawn from distributions specified.
"""
if self._fit_method == "MultiNest":
return

if 'file' in self._starting_parameters_input:
in_type = 'file'
keys_expected = {'file', 'parameters'}
Expand Down

0 comments on commit 81fc673

Please sign in to comment.