Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamondJoseph committed Nov 21, 2024
1 parent ee20af9 commit 6a4bbb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion docs/reference/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ paths:
description: Validation Error
summary: Get Tasks
post:
description: Submit a task to the worker.
operationId: submit_task_tasks_post
requestBody:
content:
Expand Down
2 changes: 1 addition & 1 deletion src/blueapi/core/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def _convert_type(self, typ: type | Any) -> type:
root = get_origin(typ)
if root == UnionType:
root = Union
return root[new_types] # type: ignore
return root[new_types] # type: ignore
return typ


Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

# Based on https://docs.pytest.org/en/latest/example/simple.html#control-skipping-of-tests-according-to-command-line-option # noqa: E501
import pytest
from bluesky.run_engine import RunEngine, TransitionError
from bluesky._vendor.super_state_machine.errors import TransitionError
from bluesky.run_engine import RunEngine
from observability_utils.tracing import JsonObjectSpanExporter, setup_tracing
from opentelemetry.sdk.trace import TracerProvider
from opentelemetry.sdk.trace.export import SimpleSpanProcessor
Expand Down

0 comments on commit 6a4bbb2

Please sign in to comment.