#239 added token type validation

This commit is contained in:
Oleg A 2019-11-23 12:45:47 +03:00
parent 89b0754b33
commit 4523a1cab3
2 changed files with 11 additions and 1 deletions

View file

@ -10,6 +10,10 @@ INVALID_TOKENS = [
':AABBCCDDEEFFaabbccddeeff123456789', # there is no left part
'123456789:', # there is no right part
'ABC AABBCCDDEEFFaabbccddeeff123456789', # there is no ':' separator
None, # is None
12345678, # is digit
{}, # is dict
[], # is dict
]