Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ doc = [
]
dev = [
"ibex_bluesky_core[doc]",
"ruff==0.15.13", # Update manually so we don't get new rules 'by accident'
"ruff==0.15.14", # Update manually so we don't get new rules 'by accident'
"pyright==1.1.409", # Update manually
"pytest",
"pytest-asyncio",
Expand Down
2 changes: 1 addition & 1 deletion src/ibex_bluesky_core/callbacks/_fitting.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def event(self, doc: Event) -> Event:

for livefit in self._livefits:
rem_guess = livefit.method.guess
try:
try: # noqa: PLW0717
if init_guess:
# Use previous fit results as initial guess for next fit
def guess_func(
Expand Down
2 changes: 1 addition & 1 deletion src/ibex_bluesky_core/run_engine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def outer_plan():
"To call a sub plan from within an outer plan, "
"use 'yield from subplan(...)' instead.\n"
)
try:
try: # noqa: PLW0717
if RE.state != "idle":
raise RuntimeError(
"Cannot run plan; RunEngine is not idle at start of run_plan call. "
Expand Down
Loading