Skip to content

Commit

Permalink
fix ignore comment error from mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreMarchand20 committed Jun 9, 2024
1 parent d825b97 commit f90f889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asciinema_automation/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f90f889

Please sign in to comment.