diff --git a/inkycal/modules/test_module.py b/inkycal/modules/test_module.py index 886b114..1622562 100644 --- a/inkycal/modules/test_module.py +++ b/inkycal/modules/test_module.py @@ -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