From 615bd0e81bf66e6828720354ffb4ea89c0260c6c Mon Sep 17 00:00:00 2001 From: Jye Cusch Date: Fri, 23 Jun 2023 15:30:24 +1000 Subject: [PATCH] add return type to the 'run' function --- nitric/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nitric/application.py b/nitric/application.py index ba56dc9..5c883b6 100644 --- a/nitric/application.py +++ b/nitric/application.py @@ -88,7 +88,7 @@ def _create_tracer(cls, local: bool = True, sampler: int = 100) -> TracerProvide return provider @classmethod - def run(cls): + def run(cls) -> None: """ Start the nitric application.