solarrd/configutils.py

6 lines
187 B
Python

#!/usr/bin/env python3
from collections import namedtuple
StoredValue = namedtuple('StoredValue', ['name', 'min', 'max'])
GraphLine = namedtuple('GraphLine', ['name', 'label', 'color'])