From 9a7d98d58b48bdbb3b1fb7e76419b72a457fccd9 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 8 Feb 2024 17:40:49 +0000 Subject: [PATCH] fix docstrings remove pass --- xair_api/errors.py | 2 -- xair_api/lr.py | 4 ++-- xair_api/rtn.py | 6 +++--- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/xair_api/errors.py b/xair_api/errors.py index eac42f6..8b21bee 100644 --- a/xair_api/errors.py +++ b/xair_api/errors.py @@ -1,4 +1,2 @@ class XAirRemoteError(Exception): """Base error class for XAIR Remote.""" - - pass diff --git a/xair_api/lr.py b/xair_api/lr.py index 8821779..88fa2aa 100644 --- a/xair_api/lr.py +++ b/xair_api/lr.py @@ -7,7 +7,7 @@ from .shared import EQ, GEQ, Automix, Config, Dyn, Gate, Group, Insert, Mix, Pre class ILR(abc.ABC): - """Abstract Base Class for buses""" + """Abstract Base Class for lr""" def __init__(self, remote, index: Optional[int] = None): self._remote = remote @@ -26,7 +26,7 @@ class ILR(abc.ABC): class LR(ILR): - """Concrete class for buses""" + """Concrete class for lr""" @classmethod def make(cls, remote, index=None): diff --git a/xair_api/rtn.py b/xair_api/rtn.py index cb86efb..8fd5f48 100644 --- a/xair_api/rtn.py +++ b/xair_api/rtn.py @@ -19,7 +19,7 @@ from .shared import ( class IRtn(abc.ABC): - """Abstract Base Class for aux""" + """Abstract Base Class for rtn""" def __init__(self, remote, index: Optional[int] = None): self._remote = remote @@ -38,7 +38,7 @@ class IRtn(abc.ABC): class AuxRtn(IRtn): - """Concrete class for aux""" + """Concrete class for auxrtn""" @classmethod def make(cls, remote, index=None): @@ -80,7 +80,7 @@ class AuxRtn(IRtn): class FxRtn(IRtn): - """Concrete class for rtn""" + """Concrete class for fxrtn""" @classmethod def make(cls, remote, index):