Add missing "," in modules/coins.py

This commit is contained in:
jesopo 2018-10-21 12:09:35 +01:00
parent 4dbad92f3b
commit 42123442dc

View file

@ -31,7 +31,7 @@ THIRD_COLUMN = list(range(1, 37))[2::3]
REGEX_STREET = re.compile("street([1-9]|1[0-2])$") REGEX_STREET = re.compile("street([1-9]|1[0-2])$")
WALLET_DEFAULT_NAME = "default" WALLET_DEFAULT_NAME = "default"
WALLET_DEFAULTS = {"in": WALLET_DEFAULT_NAME, "out": WALLET_DEFAULT_NAME WALLET_DEFAULTS = {"in": WALLET_DEFAULT_NAME, "out": WALLET_DEFAULT_NAME,
"interest": WALLET_DEFAULT_NAME, "lottery": WALLET_DEFAULT_NAME} "interest": WALLET_DEFAULT_NAME, "lottery": WALLET_DEFAULT_NAME}
class CoinParseException(Exception): class CoinParseException(Exception):
pass pass