Source code for coalib.results.result_actions.DoNothingAction

from coalib.results.result_actions.ResultAction import ResultAction


[docs]class DoNothingAction(ResultAction): SUCCESS_MESSAGE = '' is_applicable = staticmethod(lambda *args: True)
[docs] def apply(self, result, original_file_dict, file_diff_dict): """ Do (N)othing """