From 90b4aeeebe116a3e363d31ad547607fe6548f916 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Mon, 30 Dec 2019 10:17:58 -0600 Subject: [PATCH] pep8 fixes --- resources/lib/vfs.py | 4 ++-- service.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/lib/vfs.py b/resources/lib/vfs.py index d0df9ac..806ea54 100644 --- a/resources/lib/vfs.py +++ b/resources/lib/vfs.py @@ -20,11 +20,11 @@ class Vfs: def clean_path(self, path): # fix slashes path = path.replace("\\", "/") - + # check if trailing slash is included if(path[-1:] != '/'): path = path + '/' - + return path def set_root(self, rootString): diff --git a/service.py b/service.py index 50614a3..64dad03 100644 --- a/service.py +++ b/service.py @@ -1,4 +1,4 @@ from resources.lib.scheduler import BackupScheduler # start the backup scheduler -BackupScheduler().start() \ No newline at end of file +BackupScheduler().start()