We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd21602 commit a7c26bfCopy full SHA for a7c26bf
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# Changelog
2
3
+## Next release
4
+
5
+### 🔧 Fixed
6
7
+* Change the default `bias` argument for the long-term calibrations to `None`.
8
9
10
## 1.9.0 - April 1, 2025
11
12
### ✨ Improved
src/gort/recipes/calibrations.py
@@ -343,7 +343,7 @@ class LongTermCalibrations(BaseRecipe):
343
344
name = "long_term_calibrations"
345
346
- async def recipe(self, biases: bool | None = False):
+ async def recipe(self, biases: bool | None = None):
347
"""Runs the calibration sequence.
348
349
Parameters
0 commit comments