Fix warning due to missing argument

ft.font-size^2
Gonçalo Silva 2019-04-13 03:45:27 +01:00
parent af9d1adf7c
commit 1842a849ad
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class UndoRedoHandler:
self.__end_not_undoable_action()
self.undo_in_progress = False
def redo(self, text_view, _data):
def redo(self, text_view, _data=None):
"""Redo insertions or deletions. Redone actions are moved to undo stack
This method can be registered to a custom redo signal, or used independently."""