From 812a789b35d5929695fa23ac201dea54929be8ac Mon Sep 17 00:00:00 2001 From: epiphyte Date: Tue, 24 Dec 2024 11:18:58 -0500 Subject: [PATCH] From manual testing, we know this function works as expected. Testing it in unit tests is non-trivial. --- synapse/lib/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapse/lib/cli.py b/synapse/lib/cli.py index e39586219c8..1b28ed0b4ee 100644 --- a/synapse/lib/cli.py +++ b/synapse/lib/cli.py @@ -281,7 +281,7 @@ async def _onItemFini(self): await self.fini() - async def addSignalHandlers(self): + async def addSignalHandlers(self): # pragma: no cover ''' Register SIGINT signal handler with the ioloop to cancel the currently running cmdloop task. Removes the handler when the cli is fini'd.