mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2024-11-15 17:40:57 +00:00
fix docstrings
remove pass
This commit is contained in:
parent
f3cf215a76
commit
9a7d98d58b
@ -1,4 +1,2 @@
|
||||
class XAirRemoteError(Exception):
|
||||
"""Base error class for XAIR Remote."""
|
||||
|
||||
pass
|
||||
|
@ -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):
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user