mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-19 02:38:12 +08:00
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:
@ -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)
|
||||
|
Reference in New Issue
Block a user