Removed data type return
This commit is contained in:
parent
de0b36af5f
commit
3b62e1aa14
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ class ESock:
|
|||
data = data.decode()
|
||||
elif data_type == DataTypes.json:
|
||||
data = json.loads(data.decode())
|
||||
return data, data_type
|
||||
return data
|
||||
|
||||
def send(self, data):
|
||||
data_type = type(data)
|
||||
|
|
Reference in a new issue