solarrd/configutils.py

6 lines
187 B
Python
Raw Permalink Normal View History

2018-04-27 02:03:42 +02:00
#!/usr/bin/env python3
from collections import namedtuple
StoredValue = namedtuple('StoredValue', ['name', 'min', 'max'])
GraphLine = namedtuple('GraphLine', ['name', 'label', 'color'])