diff --git a/kostky/main.py b/kostky/main.py index d103c9d..deeba69 100644 --- a/kostky/main.py +++ b/kostky/main.py @@ -2,6 +2,7 @@ from typing import Any from random import randint from os import system, name import re +from importlib.resources import files import csv from collections import Counter from tabulate import tabulate @@ -16,7 +17,8 @@ aggr: dict[str, int] = {} final_score: int = 10000 with open("hodnoty.csv", "r") as csv_file: - csv_reader = csv.reader(csv_file) + csv_text = files(__package__).joinpath("hodnoty.csv").read_text(encoding="utf-8") + csv_reader = csv.reader(csv_text.splitlines()) for row in csv_reader: key = str(row[0])