You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the time of writing, probnum.randvars triggers the following pylint messages:
too-many-instance-attributes
broad-except
arguments-differ
abstract-method
too-many-arguments
protected-access
duplicate-code
unused-argument
missing-module-docstring
missing-function-docstring
raise-missing-from
Goal:
Our long-term goal is to enable all of these checks for all parts of the project. Therefore, we should continuously work on fixing these. Currently, pylint is set up to have different checks for different modules, such that we can work on these problems individually and progress more quickly :)
To work on this issue you can check for these messages individually by calling:
Then, after fixing all errors/warnings, you should remove the exception from the corresponding line in ./tox.ini, such that this message will be tracked in the future.
The text was updated successfully, but these errors were encountered:
marvinpfoertner
changed the title
Refactor probnum.prob to resolve the pylint messages
Refactor probnum.random_variables to resolve the pylint messages
Aug 29, 2020
JonathanWenger
changed the title
Refactor probnum.random_variables to resolve the pylint messages
Refactor probnum.randvars to resolve the pylint messages
May 8, 2021
At the time of writing,
probnum.randvars
triggers the followingpylint
messages:too-many-instance-attributes
broad-except
arguments-differ
abstract-method
too-many-arguments
protected-access
duplicate-code
unused-argument
missing-module-docstring
missing-function-docstring
raise-missing-from
Goal:
Our long-term goal is to enable all of these checks for all parts of the project. Therefore, we should continuously work on fixing these. Currently, pylint is set up to have different checks for different modules, such that we can work on these problems individually and progress more quickly :)
To work on this issue you can check for these messages individually by calling:
Then, after fixing all errors/warnings, you should remove the exception from the corresponding line in
./tox.ini
, such that this message will be tracked in the future.The text was updated successfully, but these errors were encountered: