Skip to content

Commit

Permalink
Merge branch 'add-missing-docstrings' into 'master'
Browse files Browse the repository at this point in the history
Add missing doc strings

See merge request Sensirion/Python/python-i2c-scd30!3
  • Loading branch information
Rol-la committed Apr 27, 2022
2 parents 4be569d + 74eb5ab commit 40e954b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sensirion_i2c_scd30/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@


class Scd30DeviceBase:
"""Low level API implementation of SCD30"""

def __init__(self, channel):
self._channel = channel
Expand Down Expand Up @@ -217,6 +218,8 @@ def soft_reset(self):


class Scd30Device(Scd30DeviceBase):
"""Driver class implementation of SCD30"""

scd30 = MixinAccess()

def __init__(self, channel):
Expand Down

0 comments on commit 40e954b

Please sign in to comment.