From 18a51ac43b3866b67e1bb6dc928327cd4a0b12a5 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Fri, 28 Apr 2023 12:00:03 +0300 Subject: [PATCH] Updated for comments --- slpkg/checksum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slpkg/checksum.py b/slpkg/checksum.py index 4a14666e..c4947918 100644 --- a/slpkg/checksum.py +++ b/slpkg/checksum.py @@ -47,7 +47,7 @@ class Md5sum: view.question() def read_file(self, filename: Union[str, Path]) -> bytes: - """ Reads the text file. """ + """ Reads the file. """ try: with open(filename, 'rb') as f: return f.read()