Skip to content

Commit

Permalink
Added a docstring to the generic Output class.
Browse files Browse the repository at this point in the history
  • Loading branch information
canismarko committed Jan 2, 2024
1 parent c78e933 commit 10bfc77
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions apstools/devices/labjack.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ class Input(EpicsRecordInputFields, EpicsRecordDeviceCommonAll):


class Output(EpicsRecordOutputFields, EpicsRecordDeviceCommonAll):
pass
"""A generic output record.
Intended to be sub-classed into different output types.
"""


class BinaryOutput(Output):
Expand All @@ -95,8 +99,6 @@ class BinaryOutput(Output):
class AnalogOutput(Output):
"""An analog output on a labjack device."""

pass


class AnalogInput(Input):
"""An analog input on a labjack device.
Expand Down

0 comments on commit 10bfc77

Please sign in to comment.