From f3639b3252572d809fb599d9eaae22f8c9cd6014 Mon Sep 17 00:00:00 2001 From: Bogdan Tintor Date: Wed, 4 Sep 2024 10:18:24 +0200 Subject: [PATCH] CTX-6563: Added missing newline at the end of the file. --- coretex/utils/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coretex/utils/misc.py b/coretex/utils/misc.py index 82382350..f6b57aa8 100644 --- a/coretex/utils/misc.py +++ b/coretex/utils/misc.py @@ -38,4 +38,4 @@ def generateSha256Checksum(path: Path) -> str: while chunk := file.read(chunkSize): sha256.update(chunk) - return sha256.hexdigest() \ No newline at end of file + return sha256.hexdigest()