Skip to content

Commit

Permalink
fixed broken imports in main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hazzery committed Oct 29, 2024
1 parent 5df765b commit b427b44
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
Simple showcase of the three cipher classes implemented in this project
"""

from message_cipher.affine_cipher import AffineCipher
from message_cipher.caesar_cipher import CaesarCipher
from message_cipher.rsa_system import RSA
from message_cipher.cipher import Cipher
from src.message_cipher.affine_cipher import AffineCipher
from src.message_cipher.caesar_cipher import CaesarCipher
from src.message_cipher.cipher import Cipher
from src.message_cipher.rsa_system import RSA

ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ exclude = ["docs/conf.py"]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D203", "D213", "EM101", "TRY003", "E501", "PT"]

[tool.ruff.lint.per-file-ignores]
"main.py" = ["T201"]

0 comments on commit b427b44

Please sign in to comment.