turned transport type usages of raw and virtual across the board to an enumerated type

This commit is contained in:
Blake Harnden 2020-05-29 22:48:00 -07:00
parent 8ad3f7961a
commit b034ba6cc3
8 changed files with 61 additions and 49 deletions

View file

@ -117,3 +117,8 @@ class ExceptionLevels(Enum):
ERROR = 2
WARNING = 3
NOTICE = 4
class TransportType(Enum):
RAW = "raw"
VIRTUAL = "virtual"