diff --git a/inkycal/custom/functions.py b/inkycal/custom/functions.py index 5c96c6d..633cde8 100644 --- a/inkycal/custom/functions.py +++ b/inkycal/custom/functions.py @@ -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: diff --git a/inkycal/main.py b/inkycal/main.py index d861aac..d1fb48d 100644 --- a/inkycal/main.py +++ b/inkycal/main.py @@ -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() diff --git a/inkycal/modules/inkycal_image.py b/inkycal/modules/inkycal_image.py index d6fb08f..20ebd07 100644 --- a/inkycal/modules/inkycal_image.py +++ b/inkycal/modules/inkycal_image.py @@ -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 = { diff --git a/inkycal/modules/template.py b/inkycal/modules/template.py index 1756268..eaf0448 100644 --- a/inkycal/modules/template.py +++ b/inkycal/modules/template.py @@ -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): diff --git a/setup.py b/setup.py index 0bf0df7..75cd26d 100644 --- a/setup.py +++ b/setup.py @@ -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"