Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed Jun 1, 2024
1 parent ea5393c commit fa6c18c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reV/config/output_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, inp):
for request in inp:
if request in self.CORRECTIONS.values():
self.append(request)
elif request in self.CORRECTIONS.keys():
elif request in self.CORRECTIONS:
self.append(self.CORRECTIONS[request])
msg = ('Correcting output request "{}" to "{}".'
.format(request, self.CORRECTIONS[request]))
Expand Down

0 comments on commit fa6c18c

Please sign in to comment.