8 lines
139 B
Python
8 lines
139 B
Python
|
|
from marshmallow import Schema, fields
|
||
|
|
|
||
|
|
|
||
|
|
class AccelerometerSchema(Schema):
|
||
|
|
x = fields.Int()
|
||
|
|
y = fields.Int()
|
||
|
|
z = fields.Int()
|