Skip to content

Commit 492fd67

Browse files
committed
Minor change
1 parent 52b177c commit 492fd67

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ build:
1010

1111
upload_test:
1212
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
13+
14+
upload:
15+
twine upload dist/*

procbridge/__init__.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
from typing import Any, Callable
2-
3-
__all__ = ["Server", "Client", "Versions", "ProtocolError", "ServerError"]
4-
5-
61
import threading
72
import socket
8-
from errors import ProtocolError, ServerError
93
import protocol as p
4+
from typing import Any, Callable
5+
from errors import ProtocolError, ServerError
106
from const import StatusCode, Versions
117

8+
__all__ = ["Server", "Client", "Versions", "ProtocolError", "ServerError"]
9+
1210

1311
class Client:
1412

0 commit comments

Comments
 (0)