From b537c8c76718708c1e50464b9b1f0ec1934fd7b2 Mon Sep 17 00:00:00 2001 From: Maximilian Giller Date: Thu, 28 Feb 2019 17:34:44 +0100 Subject: [PATCH] Removed invalid paths --- Calendar/Assets.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Calendar/Assets.py b/Calendar/Assets.py index 7ce6509..abad3ab 100644 --- a/Calendar/Assets.py +++ b/Calendar/Assets.py @@ -6,9 +6,6 @@ im_open = Image.open path = '' wpath = path+'weather-icons/' -mpath = path+'translations/'+language+'/months/' -weekpath = path+'translations/'+language+'/week/' -dpath = path+'days/' opath = path+'other/' weekday = im_open(opath+'weekday.bmp').convert('L') @@ -16,8 +13,6 @@ eventicon = im_open(opath+'event.bmp').convert('L') dateicon = im_open(opath+'today.bmp').convert('L') tempicon = im_open(opath+'temperature.jpeg') humicon = im_open(opath+'humidity.jpeg') -weekmon = im_open(weekpath+'week-mon.jpeg') -weeksun = im_open(weekpath+'week-sun.jpeg') seperator = im_open(opath+'seperator.jpeg').convert('L') no_response= im_open(opath+'cloud-no-response.jpeg') sunriseicon = im_open(opath+'wi-sunrise.jpeg')