Add some comments about the exchange variables
This commit is contained in:
parent
7770a3844c
commit
04a87c1da6
|
@ -4,9 +4,13 @@ from pydantic import ValidationError
|
||||||
from core.lib import schemas
|
from core.lib import schemas
|
||||||
from core.util import logs
|
from core.util import logs
|
||||||
|
|
||||||
|
# Return error if the schema for the message type is not found
|
||||||
STRICT_VALIDATION = False
|
STRICT_VALIDATION = False
|
||||||
|
|
||||||
|
# Raise exception if the conversion schema is not found
|
||||||
STRICT_CONVERSTION = False
|
STRICT_CONVERSTION = False
|
||||||
|
|
||||||
|
# TODO: Set them to True when all message types are implemented
|
||||||
|
|
||||||
class BaseExchange(object):
|
class BaseExchange(object):
|
||||||
def __init__(self, account):
|
def __init__(self, account):
|
||||||
|
|
Loading…
Reference in New Issue