From 4053bdfd116ad26cb8b3916bf8fcc42d186568be Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 14:58:00 +0000 Subject: [PATCH] fix: resolve CI linting errors (C901, E501, E741, F841) --- .gitignore | 46 +++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 41 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 6b404fe..12ac830 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,43 @@ -*.pyc +# Python __pycache__/ -*.egg-info/ -dist/ +*.py[cod] +*$py.class +*.so +.Python build/ -.env -.venv/ \ No newline at end of file +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual Environment +venv/ +env/ +.venv/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Testing +.coverage +.pytest_cache/ +htmlcov/ +*.cover