Skip to content

Commit

Permalink
Removed unecessary type ignore in spawn_test_container.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Nov 21, 2024
1 parent 99064ab commit 40c8980
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,6 @@ def cleanup_task(self, success: bool):
(not success and not self.no_test_container_cleanup_after_failure):
try:
self.logger.info(f"Cleaning up container %s", self.test_container_name)
self._remove_container(self.test_container_name) # type: ignore
self._remove_container(self.test_container_name)
except Exception as e:
self.logger.error(f"Error during removing container %s: %s", self.test_container_name, e)

0 comments on commit 40c8980

Please sign in to comment.