Skip to content

Commit 56e4e44

Browse files
committed
- Fix for import bug
- Re-added import statement to "./__init__.py" Signed-off-by: schlopp96 <[email protected]>
1 parent ef75dfb commit 56e4e44

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

MyCaesarCipher/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .main import CaesarCipher

MyCaesarCipher/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from random import randint
44
from typing import Optional
55

6-
__version__ = '0.4.0'
6+
__version__ = '0.4.1'
77

88

99
class CaesarCipher:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
readme = pathlib.Path("readme.md").read_text()
55
reqs = pathlib.Path("requirements.txt").read_text()
66
setup(name="MyCaesarCipher",
7-
version='0.4.0',
7+
version='0.4.1',
88
description=
99
'Simple cryptographic substitution-based cipher for encoding plaintext.',
1010
url='https://github.com/schlopp96/MyCaesarCipher',

0 commit comments

Comments
 (0)