hostel-protocol-python 0.4.2__tar.gz → 0.4.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/PKG-INFO +1 -1
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/pyproject.toml +1 -1
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/protocol/converter.py +0 -1
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/.github/workflows/ci.yml +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/.github/workflows/publish.yml +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/.gitignore +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/Makefile +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/client/__init__.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/client/client.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/protocol/__init__.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/protocol/models.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/py.typed +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/transport/__init__.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/transport/transport.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/transport/zeromq.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/tests/__init__.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/tests/test_client.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/tests/test_converter.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/tests/test_models.py +0 -0
- {hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/tests/test_transport.py +0 -0
{hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/protocol/converter.py
RENAMED
|
@@ -225,7 +225,6 @@ def pydantic_to_proto(model: BaseModel) -> Message:
|
|
|
225
225
|
def _pydantic_to_proto_inner(model: BaseModel, proto_cls: type[Message]) -> Message:
|
|
226
226
|
proto = proto_cls()
|
|
227
227
|
string_value_fields = _STRING_VALUE_FIELDS.get(proto_cls, set())
|
|
228
|
-
optional_string_fields = _OPTIONAL_STRING_FIELDS.get(proto_cls, set())
|
|
229
228
|
struct_fields = _STRUCT_FIELDS.get(proto_cls, set())
|
|
230
229
|
value_fields = _VALUE_FIELDS.get(proto_cls, set())
|
|
231
230
|
repeated_fields = _REPEATED_MSG_FIELDS.get(proto_cls, {})
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/protocol/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/transport/__init__.py
RENAMED
|
File without changes
|
{hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/transport/transport.py
RENAMED
|
File without changes
|
{hostel_protocol_python-0.4.2 → hostel_protocol_python-0.4.3}/src/hostel/transport/zeromq.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|