From 77806b3f252f1abe0160324c1de3ea5e04a1e14d Mon Sep 17 00:00:00 2001 From: s452662 Date: Tue, 23 Apr 2024 20:51:53 +0200 Subject: [PATCH] 452662 --- run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.py b/run.py index 951d1ee..5add244 100644 --- a/run.py +++ b/run.py @@ -21,8 +21,8 @@ def read_tsv_file(file_path): data = [] with open(file_path, 'r', encoding='utf-8') as file: for line in file: - line = line.strip().split('\t') # Rozdziel linie na elementy za pomocą tabulatora - data.append(line) # Dodaj elementy do listy danych + line = line.strip().split('\t') + data.append(line) return data