Fixes according to SonerLint
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user