Skip to content

Commit

Permalink
Fix pylint message
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippRue committed Nov 8, 2023
1 parent 7e61ce8 commit ac7a7e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiida_kkr/parsers/kkrimp.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def __init__(self, calc):
super(KkrimpParser, self).__init__(calc)

# pylint: disable=protected-access

def parse(self, debug=False, ignore_nan=True, **kwargs): # pylint: disable=unexpected-keyword-arg
# pylint: disable=unexpected-keyword-arg
def parse(self, debug=False, ignore_nan=True, **kwargs):
"""
Parse output data folder, store results in database.
Expand Down

0 comments on commit ac7a7e3

Please sign in to comment.