[mypy] fix hashes folder (#4305)

* fix hashes-folder

* Update build.yml

* fix doctests

* return-values to int

* Update hashes/adler32.py

* type hints for elements

Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
algobytewise
2021-04-03 13:31:46 +05:30
committed by GitHub
parent 5229c74955
commit a53fcf221b
5 changed files with 9 additions and 9 deletions

View File

@ -41,8 +41,7 @@ def engine(input_character):
if __name__ == "__main__":
decode = input("Type your message:\n")
decode = list(decode)
decode = list(input("Type your message:\n"))
while True:
try:
token = int(input("Please set token:(must be only digits)\n"))
@ -51,8 +50,8 @@ if __name__ == "__main__":
print(error)
for i in range(token):
rotator()
for i in decode:
engine(i)
for j in decode:
engine(j)
print("\n" + "".join(code))
print(
f"\nYour Token is {token} please write it down.\nIf you want to decode "