mirror of
https://github.com/OpenMTC/OpenMTC.git
synced 2025-02-24 18:10:58 +00:00
10 lines
147 B
Python
10 lines
147 B
Python
'''
|
|
Created on 30.08.2011
|
|
|
|
@author: kca
|
|
'''
|
|
|
|
from collections import namedtuple
|
|
|
|
Logbook = namedtuple("Logbook", ("name", "component", "entries"))
|