From 4d6f612ca9b8625a7c872a5d35287eb4932336a0 Mon Sep 17 00:00:00 2001 From: Alexander_Kabui Date: Fri, 13 Dec 2024 15:17:01 +0300 Subject: Fix pylint error line too long. --- gn3/computations/rqtl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gn3/computations/rqtl.py') diff --git a/gn3/computations/rqtl.py b/gn3/computations/rqtl.py index 9c1c7cd..74a8f05 100644 --- a/gn3/computations/rqtl.py +++ b/gn3/computations/rqtl.py @@ -314,7 +314,8 @@ def process_perm_output(file_name: str) -> Tuple[List, float, float]: perm_results = [] outdir = os.path.join(get_tmpdir(), "gn3") - with open(os.path.join(outdir, file_name), "r", encoding="utf-8") as the_file: + with open(os.path.join(outdir, file_name), + "r", encoding="utf-8") as the_file: for i, line in enumerate(the_file): if i == 0: # Skip header line -- cgit 1.4.1