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
The APIO code include pylint directives that appear to relate to a single error or warning but in fact they disable the linting for adjacent statements as well (until the end of block?), potentially hiding additional errors or warnings.
# R0913: Too many arguments (6/5)# pylint: disable=R0913defrun(self, command, variables, packages, board=None, arch=None):
.....
The text was updated successfully, but these errors were encountered:
The APIO code include pylint directives that appear to relate to a single error or warning but in fact they disable the linting for adjacent statements as well (until the end of block?), potentially hiding additional errors or warnings.
The text was updated successfully, but these errors were encountered: