This commit is contained in:
s452662 2024-04-23 20:51:53 +02:00
parent 7743dd2472
commit 77806b3f25
1 changed files with 2 additions and 2 deletions

4
run.py
View File

@ -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