Skip to content

Commit a7c26bf

Browse files
committed
Change the default bias argument for the long-term calibrations to None
1 parent cd21602 commit a7c26bf

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## Next release
4+
5+
### 🔧 Fixed
6+
7+
* Change the default `bias` argument for the long-term calibrations to `None`.
8+
9+
310
## 1.9.0 - April 1, 2025
411

512
### ✨ Improved

src/gort/recipes/calibrations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ class LongTermCalibrations(BaseRecipe):
343343

344344
name = "long_term_calibrations"
345345

346-
async def recipe(self, biases: bool | None = False):
346+
async def recipe(self, biases: bool | None = None):
347347
"""Runs the calibration sequence.
348348
349349
Parameters

0 commit comments

Comments
 (0)