Reorganized classes into separate files

This commit is contained in:
Jamie Hardt
2018-12-29 12:29:46 -08:00
parent 28c2344a53
commit 5e902d4926
7 changed files with 355 additions and 334 deletions

View File

@@ -4,12 +4,12 @@
from re import (compile, match)
class ChannelMap:
"""
Represents a set of all the channels to which an event applies.
"""
_chan_map = { "V" : (True, False, False),
_chan_map = {
"V" : (True, False, False),
"A" : (False, True, False),
"A2" : (False, False, True),
"AA" : (False, True, True),