Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlodek committed Sep 19, 2024
1 parent 4bf0b06 commit 945de66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/core/test_flyer.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ def flying_plan():
wait=True,
)


yield from bps.open_run()
yield from bps.declare_stream(*detectors, name="main_stream", collect=True)

Expand Down Expand Up @@ -296,11 +295,12 @@ def flying_plan():
yield from bps.unstage_all(flyer, *detectors)

# fly scan
with pytest.raises(Exception, match="Kickoff called more than the configured number"):
with pytest.raises(
Exception, match="Kickoff called more than the configured number"
):
RE(flying_plan())



# To do: Populate configuration signals
async def test_describe_configuration():
flyer = StandardFlyer(DummyTriggerLogic(), [], name="flyer")
Expand Down

0 comments on commit 945de66

Please sign in to comment.