From f90f889e8d81ad13336b8f443168749df6a4fca3 Mon Sep 17 00:00:00 2001 From: Pierre Marchand Date: Sun, 9 Jun 2024 20:39:27 +0200 Subject: [PATCH] fix ignore comment error from mypy --- asciinema_automation/script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asciinema_automation/script.py b/asciinema_automation/script.py index 0c53309..f3d59be 100644 --- a/asciinema_automation/script.py +++ b/asciinema_automation/script.py @@ -30,7 +30,7 @@ def execute(self) -> None: ) logger.info(spawn_command) self.process = pexpect.spawn(spawn_command, timeout=self.timeout, logfile=None) - self.process.delaybeforesend = self.delaybeforesend # type: ignore + self.process.delaybeforesend = self.delaybeforesend self.process.expect("\n") logger.debug(self.process.before)