added 8 to ambiguous characters (looks like B)

This commit is contained in:
2019-07-10 19:40:14 +01:00
parent 6c14e13d08
commit 186f257704

View File

@@ -18,7 +18,7 @@ class Database:
numbers = list(range(1, 100)) numbers = list(range(1, 100))
identifiers = list(string.ascii_uppercase) + [str(item) for item in identifiers = list(string.ascii_uppercase) + [str(item) for item in
numbers] # All identifiers are treated as strings numbers] # All identifiers are treated as strings
ambiguous = ['I', 'O', 'V', '1', '5', '9', '99'] ambiguous = ['I', 'O', 'V', '1', '8', '5', '9', '99']
utils.remove_common_elements(identifiers, ambiguous) utils.remove_common_elements(identifiers, ambiguous)
return identifiers return identifiers