Skip to content

Commit

Permalink
fix some pyright errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap authored and ZohebShaikh committed Apr 30, 2024
1 parent a06e169 commit 06082ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/examples/epics_demo.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Import bluesky and ophyd
import matplotlib.pyplot as plt
from bluesky import RunEngine
from bluesky.callbacks.best_effort import BestEffortCallback
from bluesky.plan_stubs import mov, movr, rd # noqa
from bluesky.plans import grid_scan # noqa
from bluesky.run_engine import RunEngine
from bluesky.utils import ProgressBarManager, register_transform
from ophyd import Component, Device, EpicsSignal, EpicsSignalRO

Expand Down
2 changes: 1 addition & 1 deletion tests/epics/areadetector/test_scans.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import bluesky.plan_stubs as bps
import bluesky.plans as bp
import pytest
from bluesky import RunEngine
from bluesky.run_engine import RunEngine

from ophyd_async.core import (
AsyncStatus,
Expand Down
2 changes: 1 addition & 1 deletion tests/epics/areadetector/test_single_trigger_det.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import bluesky.plans as bp
import pytest
from bluesky import RunEngine
from bluesky.run_engine import RunEngine

from ophyd_async.core import DeviceCollector, set_sim_value
from ophyd_async.epics.areadetector import ImageMode, SingleTriggerDet
Expand Down

0 comments on commit 06082ae

Please sign in to comment.