Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
gongzhang committed Nov 27, 2018
1 parent 52b177c commit 492fd67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ build:

upload_test:
twine upload --repository-url https://test.pypi.org/legacy/ dist/*

upload:
twine upload dist/*
10 changes: 4 additions & 6 deletions procbridge/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
from typing import Any, Callable

__all__ = ["Server", "Client", "Versions", "ProtocolError", "ServerError"]


import threading
import socket
from errors import ProtocolError, ServerError
import protocol as p
from typing import Any, Callable
from errors import ProtocolError, ServerError
from const import StatusCode, Versions

__all__ = ["Server", "Client", "Versions", "ProtocolError", "ServerError"]


class Client:

Expand Down

0 comments on commit 492fd67

Please sign in to comment.