-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Description:
Currently, several locations in the codebase use # type: ignore[arg-type] comments to suppress mypy argument type errors. While this allows CI to pass, it hides potential type mismatches and reduces the effectiveness of static type checking.
This issue proposes to:
Identify all instances of # type: ignore[arg-type] in the codebase.
Refactor the affected code to resolve the underlying type incompatibilities, ensuring correct type annotations and function signatures.
Remove the # type: ignore[arg-type] comments once the type issues are properly addressed.
Ensure all changes pass mypy checks without suppressing argument type errors.
Acceptance Criteria:
No # type: ignore[arg-type] comments remain in the codebase.
All code passes mypy type checking without argument type suppressions.
Code functionality and tests remain unaffected.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request