Fixed path location

This commit is contained in:
Ace 2020-07-04 16:21:33 +02:00
parent 7b029f532e
commit f4e8c27768

View File

@ -148,14 +148,14 @@ if __name__ == '__main__':
# Wow, you made your own module for the inkycal project! Amazing :D
# To make sure this module can be used with inkycal, you need to edit 2 files:
# 1) Inkycal/modules/__init__.py
# 1) Inkycal/inkycal/modules/__init__.py
# Add this into the modules init file:
# from .filename import Class
# where filename is the name of your module
# where Class is the name of your class e.g. Simple in this case
# 2) Inkycal/__init__.py
# 2) Inkycal/inkycal/__init__.py
# Before the line # Main file, add this:
# import inkycal.modules.filename
# Where the filename is the name of your file inside the modules folder