Run Black over the whole codebase
This commit is contained in:
parent
cd990e4e2f
commit
2e7d12b3e6
109 changed files with 1539 additions and 1209 deletions
|
|
@ -6,8 +6,9 @@ from string import ascii_lowercase, ascii_uppercase
|
|||
chars = ascii_uppercase + ascii_lowercase
|
||||
conv = BaseConverter(chars)
|
||||
|
||||
|
||||
class AbcIdConverter:
|
||||
regex = '[a-zA-Z]+'
|
||||
regex = "[a-zA-Z]+"
|
||||
|
||||
def to_python(self, value: str) -> int:
|
||||
return int(conv.decode(value))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue