-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed the line-too-long
message for all modules under probnum.linalg
subpackage.
#696
Conversation
…ing config in `tox.ini`.
…nse to the failed pylint checks.
@JonathanWenger Could you please approve running the checks again? I have made a new commit in response to the test results stating that maximum line length should be 88, instead of the default of 100 in pylint (as I have wrongly assumed). |
I am a bit confused about why the pylint and black checks would give an |
…alg-pylint-refactor
src/probnum/linalg/solvers/information_ops/_linear_solver_information_op.py
Outdated
Show resolved
Hide resolved
src/probnum/linalg/solvers/stopping_criteria/_linear_solver_stopping_criterion.py
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for taking care of this!
In a Nutshell
Fixed the
line-too-long
message for all modules underprobnum.linalg
subpackage.Detailed Description
Splitted lines longer than 100 characters into multiple lines, each shorter than 100 characters, as required by pylint. Stopped ignoring
line-too-long
issue forprobnum.linalg
subpackage by changing configuration intox.ini
.Solving each message in different pull requests as requested in #671.
Related Issues
Finishes first to-do in #671.