Skip to content
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

treewide: fixes to make pylint happier #1423

Merged
merged 2 commits into from
Jun 17, 2024

Commits on Jun 13, 2024

  1. treewide: fixes to make pylint happier

    Right now the CI fails and that makes me and my PRs unhappy.
    
    Signed-off-by: Paul Spooren <[email protected]>
    aparcar committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    49aa0eb View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2024

  1. util/agent: disable pylint warnings

    The pylint code warns because of a possibly-used-before-assignment,
    which is only valid in case python gobject introspectiuon is not used.
    The reason the variable is hidden behind a type check is a hang related
    to sphinx, which when trying to import the module for autodoc hangs
    forever. The normal case is that the `nm` variable is always assigned
    before use, so disable the related warnings.
    
    Signed-off-by: Rouven Czerwinski <[email protected]>
    Emantor committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    bc76201 View commit details
    Browse the repository at this point in the history