Skip to content

Commit

Permalink
lint: qa on black incompat
Browse files Browse the repository at this point in the history
  • Loading branch information
maffettone committed Feb 6, 2025
1 parent b592831 commit 8aeffb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/blop/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,17 @@ class BlueskyAdaptiveBaseAgent(ABC):
"""

@abstractmethod
def measurement_plan(self, point: ArrayLike) -> Tuple[str, List, dict]: ...
def measurement_plan(self, point: ArrayLike) -> Tuple[str, List, dict]: ... # noqa: E704

@staticmethod
@abstractmethod
def unpack_run(run) -> Tuple[Union[float, ArrayLike], Union[float, ArrayLike]]: ...
def unpack_run(run) -> Tuple[Union[float, ArrayLike], Union[float, ArrayLike]]: ... # noqa: E704

@abstractmethod
def tell(self, x, y) -> Dict[str, ArrayLike]: ...
def tell(self, x, y) -> Dict[str, ArrayLike]: ... # noqa: E704

@abstractmethod
def ask(self, batch_size: int) -> Tuple[Sequence[Dict[str, ArrayLike]], Sequence[ArrayLike]]: ...
def ask(self, batch_size: int) -> Tuple[Sequence[Dict[str, ArrayLike]], Sequence[ArrayLike]]: ... # noqa: E704


class BaseAgent:
Expand Down

0 comments on commit 8aeffb7

Please sign in to comment.