Skip to content

Commit

Permalink
Update plugin imports and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
SilkePilon committed Dec 1, 2023
1 parent a20bdce commit 10cb61e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lodestone/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
try:
from lodestone.bot import createBot, Bot
from lodestone.utils import llm
from lodestone.plugins import plugins
from plugins import plugins
from lodestone.api import fastapi
from lodestone.server import createServer, Server
from lodestone.logger import logger
Expand Down
11 changes: 5 additions & 6 deletions lodestone/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
from .discordrp import discordrp

class plugins:
def __init__(self):
self.cactus = cactus()
self.discordrp = discordrp()
self.discord = discord()
self.schematic = schematic()
super().__init__()
cactus = cactus()
discordrp = discordrp()
discord = discord()
schematic = schematic()

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lodestone"
version = "0.0.59"
version = "0.0.60"
description = "🤖 Create Minecraft bots with a powerful, stable, and high level Python API."
authors = [
{ name = "Silke Pilon", email = "[email protected]" },
Expand Down

0 comments on commit 10cb61e

Please sign in to comment.