diff options
author | toonn <toonn@toonn.io> | 2022-02-05 19:29:57 +0100 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2022-02-05 19:29:57 +0100 |
commit | 0b9a9854d303ee2041ce32ee9b1073e5db73a973 (patch) | |
tree | 47f39c71de643326c643119e64566dbb4b47e90b | |
parent | a4b70bbf8b5e37b68c82d5fc71087772944516a9 (diff) | |
download | ranger-0b9a9854d303ee2041ce32ee9b1073e5db73a973.tar.gz |
Revert "manpage_completion_test: Drop disappeared Pylint options"
This reverts commit abcdb9b6d76cf56be55c037d90b1c299468d006a.
-rwxr-xr-x | tests/manpage_completion_test.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/manpage_completion_test.py b/tests/manpage_completion_test.py index 3b067b46..1a01f944 100755 --- a/tests/manpage_completion_test.py +++ b/tests/manpage_completion_test.py @@ -26,6 +26,7 @@ def get_path_of_man_page(): def read_manpage(): path = get_path_of_man_page() + # pylint: disable=unspecified-encoding with open(path, 'r') as man_page: return man_page.read() |