mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Fix wrong import
This commit is contained in:
parent
4f6b0e1429
commit
e34b4998fd
2 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@ from .errors import HeraldError, ConnectionClosedError, LinkError, InvalidServer
|
|||
from .link import Link
|
||||
from .package import Package
|
||||
from .request import Request
|
||||
from .response import ResponseSuccess, ResponseError
|
||||
from .response import ResponseSuccess, ResponseFailure
|
||||
from .server import Server
|
||||
|
||||
|
||||
|
@ -18,6 +18,6 @@ __all__ = [
|
|||
"Package",
|
||||
"Request",
|
||||
"ResponseSuccess",
|
||||
"ResponseError",
|
||||
"ResponseFailure",
|
||||
"Server",
|
||||
]
|
||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as f:
|
|||
|
||||
setuptools.setup(
|
||||
name="royalherald",
|
||||
version="5.0b3",
|
||||
version="5.0b4",
|
||||
author="Stefano Pigozzi",
|
||||
author_email="ste.pigozzi@gmail.com",
|
||||
description="A websocket communication protocol",
|
||||
|
|
Loading…
Reference in a new issue