Skip to content

Commit 581d659

Browse files
committed
rename to backend
1 parent d47624f commit 581d659

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pylabrobot/plate_reading/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .biotek_backend import Cytation5Backend, Cytation5ImagingConfig
2-
from .byonoy import Byonoy
2+
from .byonoy_backend import ByonoyAbsorbance96AutomateBackend, ByonoyFluorescence96AutomateBackend
33
from .clario_star_backend import CLARIOStarBackend
44
from .image_reader import ImageReader
55
from .imager import Imager

pylabrobot/plate_reading/byonoy.py renamed to pylabrobot/plate_reading/byonoy_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ async def send_command(self, command: bytes, wait_for_response: bool = True) ->
142142
return response
143143

144144

145-
class ByonoyAbsorbance96Automate(_ByonoyBase):
145+
class ByonoyAbsorbance96AutomateBackend(_ByonoyBase):
146146
def __init__(self) -> None:
147147
super().__init__(pid=0x1199, device_type=_ByonoyDevice.ABSORBANCE_96)
148148

@@ -293,7 +293,7 @@ async def read_fluorescence(
293293
raise NotImplementedError("Absorbance plate reader does not support fluorescence reading.")
294294

295295

296-
class ByonoyFluorescence96Automate(_ByonoyBase):
296+
class ByonoyFluorescence96AutomateBackend(_ByonoyBase):
297297
def __init__(self) -> None:
298298
super().__init__(pid=0x119B, device_type=_ByonoyDevice.FLUORESCENCE_96)
299299

0 commit comments

Comments
 (0)