Fixed a packaging issue

This commit is contained in:
nocturn9x 2020-05-31 13:40:40 +00:00
parent bf87fe9b76
commit 1943defbdc
5 changed files with 5 additions and 6 deletions

View File

@ -1,5 +0,0 @@
from .core.structures import TTLQueue, TTLStack
from .core.errors import QueueEmpty, StackEmpty, QueueFull, StackFull
__all__ = ["TTLQueue", "TTLStack", "QueueEmpty", "QueueFull", "StackEmpty", "StackFull"]
__version__ = (1, 0, 0)

View File

@ -1 +0,0 @@
__version__ = (1, 0, 0)

View File

@ -0,0 +1,5 @@
from .structures import TTLQueue, TTLStack
from .errors import QueueEmpty, StackEmpty, QueueFull, StackFull
__all__ = ["TTLQueue", "TTLStack", "QueueEmpty", "QueueFull", "StackEmpty", "StackFull"]
__version__ = (1, 0, 0)