fix(mypy): type annotations for cipher algorithms (#4306)

* fix(mypy): type annotations for cipher algorithms

* Update mypy workflow to include cipher directory

* fix: mypy errors in hill_cipher.py

* fix build errors
This commit is contained in:
Dhruv Manilawala
2021-04-04 10:52:12 +05:30
committed by GitHub
parent 806b3864c3
commit 60895366c0
21 changed files with 207 additions and 210 deletions

View File

@ -83,7 +83,7 @@ def decrypt(message: str) -> str:
return decipher
def main():
def main() -> None:
message = "Morse code here"
result = encrypt(message.upper())
print(result)