From 7d19d794099011ec54fa64cbbb9c26740912c493 Mon Sep 17 00:00:00 2001 From: messense Date: Tue, 13 Dec 2022 12:13:38 +0800 Subject: [PATCH] Fix a ruff lint error --- test-crates/with-data/check_installed/check_installed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-crates/with-data/check_installed/check_installed.py b/test-crates/with-data/check_installed/check_installed.py index 23cfd5282..961ed8c94 100644 --- a/test-crates/with-data/check_installed/check_installed.py +++ b/test-crates/with-data/check_installed/check_installed.py @@ -12,7 +12,7 @@ installed_data = ( venv_root.joinpath("data_subdir") .joinpath("hello.txt") - # With the default encoding, python under windows fails to read the file correctly :/ + # With the default encoding, python under windows fails to read the file correctly .read_text(encoding="utf-8") .strip() )