11 lines
185 B
Python
11 lines
185 B
Python
from ... import jawbone
|
|
from ... import emfit
|
|
|
|
from .common import Combine
|
|
_combined = Combine([
|
|
jawbone,
|
|
emfit,
|
|
])
|
|
|
|
dataframe = _combined.dataframe
|
|
stats = _combined.stats
|