From 7c055f1048146cd5288d8a9b5ecd42a859867b96 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 27 Nov 2023 18:23:21 +0200 Subject: [PATCH] Updated comments --- slpkg/utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slpkg/utilities.py b/slpkg/utilities.py index 14060524..4c16edfe 100644 --- a/slpkg/utilities.py +++ b/slpkg/utilities.py @@ -119,7 +119,7 @@ class Utilities(Configs): return True def read_packages_from_file(self, file: Path) -> Generator: - """ Reads packages from file and split these to list. """ + """ Reads name packages from file and split these to list. """ try: with open(file, 'r', encoding='utf-8') as pkgs: packages: list = pkgs.read().splitlines()