Skip to content

Commit

Permalink
fix: module naming (#3)
Browse files Browse the repository at this point in the history
This should address an error in the entrypoint definition.
  • Loading branch information
sijis authored Jan 25, 2023
1 parent 4e1292a commit 2e3163f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
include_package_data=True,
entry_points={
"errbot.plugins": [
"helloworld = helloWorld:HelloWorld",
"helloworld = helloworld:HelloWorld",
]
},
)
1 change: 1 addition & 0 deletions src/helloworld/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .helloWorld import HelloWorld

0 comments on commit 2e3163f

Please sign in to comment.