From 3b7f4eb9b1677a00c331f6bdbf91672e51520830 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Mon, 12 Feb 2024 15:47:30 +0000 Subject: [PATCH] small changes to avoid spelling exception --- spinnman/get_cores_in_run_state.py | 5 +++-- spinnman/transceiver/extendable_transceiver.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/spinnman/get_cores_in_run_state.py b/spinnman/get_cores_in_run_state.py index 10b71458d..1dcf930a5 100644 --- a/spinnman/get_cores_in_run_state.py +++ b/spinnman/get_cores_in_run_state.py @@ -78,8 +78,9 @@ def _make_transceiver(host, version, bmp_names) -> Transceiver: :param version: Board version to use (`None` defaults to 5 unless host is 192.168.240.253 (spin 3) :type version: int or None - :param bmp: bmp connection or `None` to auto detect (if applicable) - :type bmp: str or None + :param bmp_names: names of BMP connection + or `None` to auto detect (if applicable) + :type bmp_names: str or None :rtype: Transceiver """ if host is None: diff --git a/spinnman/transceiver/extendable_transceiver.py b/spinnman/transceiver/extendable_transceiver.py index e937f82bc..953ce9886 100644 --- a/spinnman/transceiver/extendable_transceiver.py +++ b/spinnman/transceiver/extendable_transceiver.py @@ -53,7 +53,7 @@ def __init__(self): @abstractmethod def bmp_selector(self) -> Optional[FixedConnectionSelector[BMPConnection]]: """ - Returns the bmp selector + Returns the BMP selector :rtype: AbstractMultiConnectionProcessConnectionSelector """