Skip to content

Commit dbd207c

Browse files
committed
Adds untested warning to PreciseFlexBackend
1 parent 3fc812e commit dbd207c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pylabrobot/arms/precise_flex/preciseflex_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def __init__(self, replycode: int, message: str):
77
super().__init__(f"PreciseFlexError {replycode}: {message}")
88

99
class PreciseFlexBackend(ArmBackend):
10-
"""Backend for the PreciseFlex robotic arm"""
10+
"""UNTESTED - Backend for the PreciseFlex robotic arm"""
1111
def __init__(self, host: str, port: int, timeout=20, profile=1) -> None:
1212
super().__init__()
1313
self.host = host

pylabrobot/sealing/sealer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .backend import SealerBackend
44

55

6-
class Sealer(Machine):
6+
class Sealer(Machine):
77
"""A microplate sealer"""
88

99
def __init__(self, backend: SealerBackend):

0 commit comments

Comments
 (0)