Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AstroBarker committed Jan 7, 2025
1 parent 2bc3a91 commit e76eccc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/microphysics/opac_phoebus/opac_phoebus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ std::shared_ptr<StateDescriptor> Initialize(ParameterInput *pin) {
}

{
auto opacity_host =
params.Get<singularity::neutrinos::Opacity>("h.opacity");
auto opacity_host = params.Get<singularity::neutrinos::Opacity>("h.opacity");
const Real YeMin = pin->GetOrAddReal("mean_opacity", "yemin", 0.1);
const Real YeMax = pin->GetOrAddReal("mean_opacity", "yemax", 0.5);
const int NYe = pin->GetOrAddInteger("mean_opacity", "nye", 10);
Expand Down
4 changes: 3 additions & 1 deletion tst/regression/regression_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,9 @@ def gold_comparison(
if len(variable.shape) > 1:
dim = variable.shape[0]
for d in range(dim):
variables_data = np.concatenate((variables_data, variable[d, :].flatten()))
variables_data = np.concatenate(
(variables_data, variable[d, :].flatten())
)
else:
variables_data = np.concatenate((variables_data, variable))

Expand Down

0 comments on commit e76eccc

Please sign in to comment.