From 6748235437ac624b03fe5f5dcc0e5805b702ddc6 Mon Sep 17 00:00:00 2001 From: Julian Mundhahs Date: Tue, 10 Dec 2024 21:44:24 +0100 Subject: [PATCH] Add missing final linebreak --- src/qlever/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qlever/util.py b/src/qlever/util.py index 74040c31..c92ab4b1 100644 --- a/src/qlever/util.py +++ b/src/qlever/util.py @@ -231,4 +231,5 @@ def name_from_path(path: str) -> str: Helper function that returns the name of the file from its path. E.g. /qlever/ServerMain -> ServerMain """ - return Path(path).name \ No newline at end of file + return Path(path).name +