pyEscoAPI 0.0.31__tar.gz → 0.0.32__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.
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/PKG-INFO +1 -1
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI/esco_api.py +1 -1
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI.egg-info/PKG-INFO +1 -1
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyproject.toml +1 -1
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/README.md +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI/__init__.py +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI/dataclasses.py +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI/exception.py +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI.egg-info/SOURCES.txt +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI.egg-info/dependency_links.txt +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI.egg-info/requires.txt +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/pyEscoAPI.egg-info/top_level.txt +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/setup.cfg +0 -0
- {pyescoapi-0.0.31 → pyescoapi-0.0.32}/tests/test_client.py +0 -0
|
@@ -1898,7 +1898,7 @@ class EscoAPI:
|
|
|
1898
1898
|
self.__pre_connection()
|
|
1899
1899
|
return self.__make_request(
|
|
1900
1900
|
request_endpoint=f"/insert-cuenta-comitente",
|
|
1901
|
-
request_body=asdict(comitente_data),
|
|
1901
|
+
request_body=asdict(comitente_data, dict_factory=lambda x: {k: v for k, v in x if v is not None}),
|
|
1902
1902
|
request_method=HTTPMethod.POST
|
|
1903
1903
|
)
|
|
1904
1904
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|