Skip to content

Commit

Permalink
install fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Dec 1, 2022
1 parent ae129f5 commit 48c6391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cobaya/likelihoods/base_classes/planck_clik.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def is_installed(cls, reload=False, **kwargs):

@classmethod
def install(cls, path=None, force=False, code=True, data=True,
no_progress_bars=False):
no_progress_bars=False, **_kwargs):
name = cls.get_qualified_class_name()
log = get_logger(name)
path_names = {"code": common_path, "data": get_data_path(name)}
Expand Down
3 changes: 1 addition & 2 deletions cobaya/samplers/polychord/polychord.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,8 +458,7 @@ def is_installed(cls, reload=False, **kwargs):
return False

@classmethod
def install(cls, path=None, force=False, code=False, data=False,
no_progress_bars=False):
def install(cls, path=None, code=False, no_progress_bars=False, **_kwargs):
if not code:
return True
log = get_logger(__name__)
Expand Down

0 comments on commit 48c6391

Please sign in to comment.