Code cleanup

This commit is contained in:
Ace 2020-11-12 21:19:51 +01:00
parent 376ce6cbe3
commit 1bd404af97
3 changed files with 6 additions and 13 deletions

View File

@ -128,11 +128,11 @@ class iCalendar:
events = (
{
'title': events.get('SUMMARY').lstrip(),
'begin': arrow.get(events.get('DTSTART').dt).to(timezone) if (
arrow.get(events.get('dtstart').dt).format('HH:mm') != '00:00')
else arrow.get(events.get('DTSTART').dt).replace(tzinfo=timezone),
'end':arrow.get(events.get("DTEND").dt).to(timezone) if (
arrow.get(events.get('dtstart').dt).format('HH:mm') != '00:00')
else arrow.get(events.get('DTEND').dt).replace(tzinfo=timezone)
@ -211,4 +211,4 @@ class iCalendar:
if __name__ == '__main__':
print('running {0} in standalone mode'.format(filename))
print('running {0} in standalone mode'.format(filename))

View File

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
"""
RSS module for inkyCal Project
RSS module for InkyCal Project
Copyright by aceisace
"""
@ -57,10 +57,10 @@ class Feeds(inkycal_module):
raise Exception('config is missing {}'.format(param))
# required parameters
self.feed_urls = self.config["feed_urls"].split(",")
self.feed_urls = config["feed_urls"].split(",")
# optional parameters
self.shuffle_feeds = self.config["shuffle_feeds"]
self.shuffle_feeds = config["shuffle_feeds"]
# give an OK message
print('{0} loaded'.format(filename))

View File

@ -300,10 +300,3 @@ class Inkyimage(inkycal_module):
if __name__ == '__main__':
print('running {0} in standalone/debug mode'.format(filename))
#a = Inkyimage((480,800), {'path': "https://raw.githubusercontent.com/aceisace/Inky-Calendar/dev_ver2_0/Gallery/logo.png"})
#a = Inkyimage((480,800), {'path': "https://raw.githubusercontent.com/aceisace/Inky-Calendar/dev_ver2_0/Gallery/logo.png"})
a = Inkyimage((480, 800), {'path': "/home/pi/Desktop/im/IMG_0475.JPG"})
a.generate_image()