Skip to content
Snippets Groups Projects
frame.py 219 B
Newer Older
from aosstower import station


class Frame(dict):

    def __init__(self, width=station.DATA_INTERVAL):
        self.width = width

    def __getattr__(self, name, default=None):
        return self.get(name, default)