lint
This commit is contained in:
parent
5c042d2c94
commit
50ef265651
1 changed files with 2 additions and 2 deletions
|
|
@ -38,13 +38,13 @@ print("Connected!")
|
|||
|
||||
try:
|
||||
sht4x_temp = aio.feeds('temp-feed')
|
||||
except: # pylint: disable = broad-except
|
||||
except: # pylint: disable = bare-except
|
||||
feed = Feed(name='temp-feed')
|
||||
sht4x_temp = aio.create_feed(feed)
|
||||
|
||||
try:
|
||||
sht4x_humid = aio.feeds('humid-feed')
|
||||
except: # pylint: disable = broad-except
|
||||
except: # pylint: disable = bare-except
|
||||
feed = Feed(name='humid_feed')
|
||||
sht4x_humid = aio.create_feed(feed)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue