Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed May 15, 2023
1 parent 166b5f6 commit df13cf3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pylsp/plugins/pylint_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class PylintLinter:
last_diags = collections.defaultdict(list)

@classmethod
def lint(cls, document, is_saved, flags=''):
def lint(cls, document, is_saved, flags=''): # pylint: disable=too-many-locals,too-many-branches
"""Plugin interface to pylsp linter.
Args:
Expand Down Expand Up @@ -96,7 +96,6 @@ def lint(cls, document, is_saved, flags=''):
log.debug("Calling pylint with '%s'", ' '.join(cmd))

cwd = document._workspace.root_path

if not cwd:
cwd = os.path.dirname(__file__)

Expand Down

0 comments on commit df13cf3

Please sign in to comment.