Remove noqa: E501 from docstrings and reformat them as needed. If it is not possible to reformat them, consider increasing the allowed line length.
Motivation and Context
Adding noqa: E501 ignores the rule for all lines in the docstring - essentially making the check useless for large sections of code that should be kept to the same line length: https://docs.astral.sh/ruff/rules/line-too-long/.
Description
Remove
noqa: E501
from docstrings and reformat them as needed. If it is not possible to reformat them, consider increasing the allowed line length.Motivation and Context
Adding
noqa: E501
ignores the rule for all lines in the docstring - essentially making the check useless for large sections of code that should be kept to the same line length: https://docs.astral.sh/ruff/rules/line-too-long/.