Skip to content

Commit 878f035

Browse files
committed
Fix mypy issue
1 parent a3056bd commit 878f035

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

microbootstrap/instruments/prometheus_instrument.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ def is_ready(self) -> bool:
3636
)
3737

3838
@classmethod
39-
def get_config_type(cls) -> type[BasePrometheusConfig]:
40-
return BasePrometheusConfig
39+
def get_config_type(cls) -> type[PrometheusConfigT]:
40+
return BasePrometheusConfig # type: ignore[return-value]

0 commit comments

Comments
 (0)