Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Sep 16, 2024
1 parent 6e3b153 commit 7204afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/parpe/hdf5_pe_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def _check_support(self):
ptc.INITIALIZATION_PRIOR_TYPE, ptc.INITIALIZATION_PRIOR_PARAMETERS,
ptc.OBJECTIVE_PRIOR_TYPE, ptc.OBJECTIVE_PRIOR_PARAMETERS
]:
if (col := parameter_df.get(col_id)) and col.notna().any():
if (col := parameter_df.get(col_id)) is not None and col.notna().any():
raise NotImplementedError("Priors are not supported yet.")

def generate_file(self, hdf5_file_name: str) -> None:
Expand Down

0 comments on commit 7204afd

Please sign in to comment.