adapt C# JSON type

This commit is contained in:
Florian Förster 2025-04-03 11:22:00 +02:00
parent 30641103ec
commit b93b070682
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "delta-barth"
version = "0.5.2"
version = "0.5.3"
description = "workflows and pipelines for the Python-based Plugin of Delta Barth's ERP system"
authors = [
{name = "Florian Förster", email = "f.foerster@d-opt.com"},
@ -73,7 +73,7 @@ directory = "reports/coverage"
[tool.bumpversion]
current_version = "0.5.2"
current_version = "0.5.3"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.

View File

@ -42,7 +42,11 @@ def delta_barth_api_error() -> str:
def status_err() -> str:
status = Status(code=102, description="internal error occurred", message="caused by test")
status = Status(
code=102,
description="internal error occurred: 'Limit-Überschreitung'",
message="caused by test",
)
return status.model_dump_json()