Skip to content

Commit

Permalink
Merge branch 'release/4.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliacomi committed Oct 11, 2022
2 parents b6b1180 + 1ef935f commit f21fecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ tests_require =
coverage[toml]
nose
install_requires =
adsorption-file-parser >= 0.1.3
adsorption-file-parser >= 0.2.2
numpy >= 1.16.5
scipy >= 1.5
pandas >= 1.1
Expand Down
2 changes: 1 addition & 1 deletion src/pygaps/characterisation/isosteric_enth.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,6 @@ def isosteric_enthalpy_raw(
iso_enth.append(-constants.gas_constant * slope / 1000)
slopes.append(slope)
correlations.append(corr_coef)
stderrs.append(-constants.gas_constant * std_err / 1000)
stderrs.append(constants.gas_constant * std_err / 1000)

return iso_enth, slopes, correlations, stderrs

0 comments on commit f21fecb

Please sign in to comment.