from sqlalchemy import Column, Integer, ForeignKey from platypush.common.db import is_defined from .sensors import NumericSensor if not is_defined('battery'): class Battery(NumericSensor): __tablename__ = 'battery' def __init__( self, *args, unit: str = '%', min: float = 0, max: float = 100, **kwargs ): super().__init__(*args, min=min, max=max, unit=unit, **kwargs) id = Column( Integer, ForeignKey(NumericSensor.id, ondelete='CASCADE'), primary_key=True ) __table_args__ = {'extend_existing': True} __mapper_args__ = { 'polymorphic_identity': __tablename__, }