Fixes according to SonerLint

This commit is contained in:
kokarare1212
2021-07-31 20:42:13 +09:00
parent 3f81de1610
commit bee0ad3ec1
14 changed files with 57 additions and 59 deletions

View File

@@ -55,7 +55,7 @@ class Base62:
if len(out) < estimated_length:
size = len(out)
for i in range(estimated_length - size):
for _ in range(estimated_length - size):
out += bytes([0])
return self.reverse(out)