Фикс
All checks were successful
Build And Push / publish (push) Successful in 2m41s

This commit is contained in:
2026-04-15 15:34:28 +03:00
parent 2f672e3f39
commit 14f19ed806
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "HospitalAssistantBackend"
version = "1.5.3"
version = "1.5.4"
description = "Backend for Hospital Assistant"
readme = "README.md"
requires-python = ">=3.13,<3.14"

View File

@ -40,8 +40,8 @@ NS = 'urn:hl7-org:v3'
class TextElement(BaseXmlModel, tag='text', ns=NS):
representation: str = attr()
media_type: str = attr(name='mediaType')
representation: str | None = attr(default=None)
media_type: str | None = attr(name='mediaType', default=None)
content: str