MCPcopy Create free account
hub / github.com/coleifer/huey / _serialize

Method _serialize

huey/serializer.py:104–106  ·  view source on GitHub ↗
(self, message)

Source from the content-addressed store, hash-verified

102 raise ValueError('Signature "%s" mismatch!' % sig)
103
104 def _serialize(self, message):
105 data = super(SignedSerializer, self)._serialize(message)
106 return self._sign(data)
107
108 def _deserialize(self, data):
109 return super(SignedSerializer, self)._deserialize(self._unsign(data))

Callers

nothing calls this directly

Calls 2

_signMethod · 0.95
_serializeMethod · 0.45

Tested by

no test coverage detected