ruff: remove unused noqa

Most of them are actually correct, but they're not enforced in general on the repo, so using them blocks us from flagging `unused-noqa` for rules that we actually do use.
This commit is contained in:
Andrej730
2026-08-10 16:06:30 +05:00
parent 321760cea4
commit daa7d98b3f
19 changed files with 35 additions and 50 deletions
@@ -81,7 +81,7 @@ from pathlib import Path
from typing import Optional, Union
sys.path.insert(0, str(Path(__file__).parent))
from validate_stub import SubnameType, get_function_node_name, get_names_tree # noqa: E402
from validate_stub import SubnameType, get_function_node_name, get_names_tree
LICENSE_HEADER_START = "# IfcOpenShell - IFC toolkit and geometry engine"