Corrected typo

This commit is contained in:
Robert Sirre 2020-12-06 23:26:17 +01:00
parent a0637d5106
commit 32846ef1e7
5 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@ available_fonts = [key for key,values in fonts.items()]
def get_fonts():
"""Print all available fonts by name.
Searches the /font folder in Inykcal and displays all fonts found in
Searches the /font folder in Inkycal and displays all fonts found in
there.
Returns:

View File

@ -639,7 +639,7 @@ class Inkycal:
else:
print('found, removing')
# Create a memory backup of inykcal init file
# Create a memory backup of inkycal init file
with open(f"{top_level}/inkycal/__init__.py", mode ='r') as file:
inkycal_init = file.read().splitlines()

View File

@ -18,7 +18,7 @@ class Inkyimage(inkycal_module):
"""Displays an image from URL or local path
"""
name = "Inykcal Image - show an image from a URL or local path"
name = "Inkycal Image - show an image from a URL or local path"
requires = {

View File

@ -2,7 +2,7 @@ import abc
from inkycal.custom import *
class inkycal_module(metaclass=abc.ABCMeta):
"""Generic base class for inykcal modules"""
"""Generic base class for inkycal modules"""
@classmethod
def __subclasshook__(cls, subclass):

View File

@ -7,7 +7,7 @@ with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
__project__ = "inkycal"
__version__ = "2.0.0"
__description__ = "Inykcal is a python3 software for syncing icalendar events, weather and news on selected E-Paper displays"
__description__ = "Inkycal is a python3 software for syncing icalendar events, weather and news on selected E-Paper displays"
__packages__ = ["inkycal"]
__author__ = "aceisace"
__author_email__ = "aceisace63@yahoo.com"