diff --git a/tests/rules/test_remove_trailing_cedilla.py b/tests/rules/test_remove_trailing_cedilla.py index 473f8d41..481d4710 100644 --- a/tests/rules/test_remove_trailing_cedilla.py +++ b/tests/rules/test_remove_trailing_cedilla.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import pytest from thefuck.rules.remove_trailing_cedilla import match, get_new_command from tests.utils import Command diff --git a/thefuck/rules/remove_trailing_cedilla.py b/thefuck/rules/remove_trailing_cedilla.py index 9439c06c..15124fa4 100644 --- a/thefuck/rules/remove_trailing_cedilla.py +++ b/thefuck/rules/remove_trailing_cedilla.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + def match(command): return command.script.endswith('รง')