WIP
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-24 20:21:43 +01:00
parent da0c8d710b
commit 0c22072a1d
16 changed files with 304 additions and 2 deletions

3
common/util.py Normal file
View File

@ -0,0 +1,3 @@
def tr(s: str, character_to_remove: str):
for c in list(character_to_remove):
s = s.replace(c, "")