1
0

Add type ignore unused-awaitable to LoopingCall start call

This commit is contained in:
Mathieu Velten
2022-11-22 17:28:15 +01:00
parent 6ac2f573ec
commit 312a754664
+1 -1
View File
@@ -129,7 +129,7 @@ def install_gc_manager() -> None:
gc_unreachable.labels(i).set(unreachable)
gc_task = task.LoopingCall(_maybe_gc)
gc_task.start(0.1)
gc_task.start(0.1) # type: ignore[unused-awaitable]
#