diff --git a/microbootstrap/instruments/health_checks_instrument.py b/microbootstrap/instruments/health_checks_instrument.py index 1da799d..78b1f75 100644 --- a/microbootstrap/instruments/health_checks_instrument.py +++ b/microbootstrap/instruments/health_checks_instrument.py @@ -7,8 +7,8 @@ class HealthCheckTypedDict(typing_extensions.TypedDict, total=False): - service_version: typing.Optional[str] # noqa: UP007 (Litestar fails to build OpenAPI schema on Python 3.9) - service_name: typing.Optional[str] # noqa: UP007 (Litestar fails to build OpenAPI schema on Python 3.9) + service_version: typing.Optional[str] # noqa: UP045 (Litestar fails to build OpenAPI schema on Python 3.9) + service_name: typing.Optional[str] # noqa: UP045 (Litestar fails to build OpenAPI schema on Python 3.9) health_status: bool