Removed data type return
This commit is contained in:
parent
725ad76159
commit
2d93ffd9f1
1 changed files with 2 additions and 3 deletions
|
@ -29,17 +29,16 @@ class Server:
|
|||
|
||||
|
||||
class Handler:
|
||||
def __init__(self, sock, info, broadcast, **kwargs):
|
||||
def __init__(self, sock, info, **kwargs):
|
||||
self.sock = sock
|
||||
self.info = info
|
||||
self.broadcast = broadcast
|
||||
self.kwargs = kwargs
|
||||
self.setup()
|
||||
|
||||
def setup(self):
|
||||
pass
|
||||
|
||||
def handle(self, data, type):
|
||||
def handle(self, data):
|
||||
pass
|
||||
|
||||
def finish(self):
|
||||
|
|
Reference in a new issue