From 3b2b857df3fd1656af76d88c08c39666ac18e1fc Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 2 May 2022 22:41:36 +0300 Subject: [PATCH] Fixed PEP E501 Signed-off-by: Dimitris Zlatanidis --- slpkg/slpkg_update.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/slpkg/slpkg_update.py b/slpkg/slpkg_update.py index 60745e1b..cbb2dea8 100644 --- a/slpkg/slpkg_update.py +++ b/slpkg/slpkg_update.py @@ -96,5 +96,6 @@ def it_self_update(): subprocess.call("sh install.sh", shell=True) else: - print(f"\n{_meta_.__all__}: There is no new version, already used the last!\n") - raise SystemExit() \ No newline at end of file + print(f"\n{_meta_.__all__}: There is no new version, " + "already used the last!\n") + raise SystemExit()