Skip to content

Commit e66f180

Browse files
authored
Fix issues after Ruff update (#109)
1 parent 6a85b4b commit e66f180

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

microbootstrap/instruments/health_checks_instrument.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88

99
class HealthCheckTypedDict(typing_extensions.TypedDict, total=False):
10-
service_version: typing.Optional[str] # noqa: UP007 (Litestar fails to build OpenAPI schema on Python 3.9)
11-
service_name: typing.Optional[str] # noqa: UP007 (Litestar fails to build OpenAPI schema on Python 3.9)
10+
service_version: typing.Optional[str] # noqa: UP045 (Litestar fails to build OpenAPI schema on Python 3.9)
11+
service_name: typing.Optional[str] # noqa: UP045 (Litestar fails to build OpenAPI schema on Python 3.9)
1212
health_status: bool
1313

1414

0 commit comments

Comments
 (0)