view m209/keylist/key_list.py @ 13:e242ef3b5a84

Working on reading key lists. Started on config file format.
author Brian Neal <bgneal@gmail.com>
date Wed, 05 Jun 2013 21:23:30 -0500
parents
children 853542100fc6
line wrap: on
line source
# Copyright (C) 2013 by Brian Neal.
# This file is part of m209, the M-209 simulation.
# m209 is released under the MIT License (see LICENSE.txt).

"""key_list.py - This module defines the KeyList class."""

import collections

KeyList = collections.namedtuple('KeyList',
                ['indicator', 'lugs', 'pin_list', 'letter_check'])