Removed data type return

This commit is contained in:
PhilipTrauner 2015-11-02 22:34:03 +01:00
parent de0b36af5f
commit 3b62e1aa14

View file

@ -38,7 +38,7 @@ class ESock:
data = data.decode() data = data.decode()
elif data_type == DataTypes.json: elif data_type == DataTypes.json:
data = json.loads(data.decode()) data = json.loads(data.decode())
return data, data_type return data
def send(self, data): def send(self, data):
data_type = type(data) data_type = type(data)