update .gitignore

This commit is contained in:
rmanach 2025-10-22 10:49:46 +02:00
parent db484c5216
commit 846e7cc4b4
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,9 +1,11 @@
.mypy_cache
.ruff_cache
__pycache__
venv
venv.dist
data
dist
docs
*.log

View File

@ -110,7 +110,7 @@ class ImgOptimizer:
self._pool.shutdown(wait=True, cancel_futures=True)
def _sigint_handler(self, signum, frame):
logging.warning("interrupt signal received, stoppping optimizer...")
logging.warning("interrupt signal received")
signal.signal(signal.SIGINT, self._orig_sigint_handler)
try:
self.stop()