PlayOptions namedtuple constant class, uncommitted exceptions, use re.compile in parsers regex for IDE color formatting, change logging

This commit is contained in:
Xevion
2021-01-23 23:57:39 -06:00
parent 01762c4dfe
commit bc4f13ac52
4 changed files with 23 additions and 12 deletions

3
bot/constants.py Normal file
View File

@@ -0,0 +1,3 @@
from collections import namedtuple
PlayOptions = namedtuple('PlayOptions', ['hit', 'stand', 'double', 'split'])