Fix pylint for editor.py.

Notate unused parameter.
This commit is contained in:
Ryan Roden-Corrent 2018-02-01 20:43:35 -05:00
parent e9023ce233
commit eab9b70f28

View File

@ -70,7 +70,7 @@ class ExternalEditor(QObject):
message.error("Failed to delete tempfile... ({})".format(e)) message.error("Failed to delete tempfile... ({})".format(e))
@pyqtSlot(int, QProcess.ExitStatus) @pyqtSlot(int, QProcess.ExitStatus)
def on_proc_closed(self, exitcode, exitstatus): def on_proc_closed(self, _exitcode, exitstatus):
"""Write the editor text into the form field and clean up tempfile. """Write the editor text into the form field and clean up tempfile.
Callback for QProcess when the editor was closed. Callback for QProcess when the editor was closed.