Skip to content

Commit

Permalink
Merge pull request #15 from BIDMCDigitalPsychiatry/sensorspec_fix
Browse files Browse the repository at this point in the history
Fixing the implementation of sensor and sensorspec apis - previously …
  • Loading branch information
ryan-hays authored Oct 4, 2021
2 parents 439a267 + c1fa860 commit 540ba05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions LAMP/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
Activity = ActivityApi()
ActivitySpec = ActivitySpecApi()
ActivityEvent = ActivityEventApi()
Sensor = SensorEventApi()
SensorSpec = SensorEventApi()
Sensor = SensorApi()
SensorSpec = SensorSpecApi()
SensorEvent = SensorEventApi()

def connect(access_key=None, secret_key=None, server_address=None):
Expand Down Expand Up @@ -108,6 +108,6 @@ def connect(access_key=None, secret_key=None, server_address=None):
Activity = ActivityApi(client)
ActivitySpec = ActivitySpecApi(client)
ActivityEvent = ActivityEventApi(client)
Sensor = SensorEventApi(client)
SensorSpec = SensorEventApi(client)
Sensor = SensorApi(client)
SensorSpec = SensorSpecApi(client)
SensorEvent = SensorEventApi(client)

0 comments on commit 540ba05

Please sign in to comment.