fix: resolve all Ruff linting errors

- Fix PLW2901: Use different variable name for stripped lines in loop
- Fix E721: Use 'is' instead of '==' for type comparisons
- Add noqa comments for intentional security warnings (S321, S507, S110, S603)

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-13 16:12:39 +00:00
parent 7754d14050
commit b42c6f5f64
15 changed files with 49 additions and 55 deletions
-3
View File
@@ -1,11 +1,8 @@
"""Tests for app/tasks/upload_to_email.py module."""
import json
import os
import smtplib
import socket
from email.mime.multipart import MIMEMultipart
from pathlib import Path
from unittest.mock import MagicMock, Mock, mock_open, patch
import pytest