diff options
author | toonn <toonn@toonn.io> | 2022-02-05 19:31:22 +0100 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2022-02-05 19:31:22 +0100 |
commit | 7a5f820e760c7ce2f93e2a5f0e91677b46252ea9 (patch) | |
tree | 6f4130ac9594adda5d6a1dd3fb97e87dc7fcc3ac /tests/manpage_completion_test.py | |
parent | fcd0d50f8b952cc70f65639742cee5e194d84401 (diff) | |
parent | e3c90e2f758ebd94de8cd228d27ef5e1e4cda817 (diff) | |
download | ranger-7a5f820e760c7ce2f93e2a5f0e91677b46252ea9.tar.gz |
Merge branch 'pylint'
Diffstat (limited to 'tests/manpage_completion_test.py')
-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() |