Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gingershaped committed Nov 27, 2023
1 parent 1cd8d40 commit 65d4eed
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 15 deletions.
20 changes: 8 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ tinydb = "^4.7.1"
pyjwt = "^2.7.0"
python-dateutil = "^2.8.2"
websockets = "^10.4"
uwuivy = { git = "https://github.com/Vyxal/uwuivy.git", branch = "v0.1.0" }
pyyaml = "^6.0"
odmantic = "^0.9.2"
blinker = "^1.7.0"
pydantic = "<2.0"
discord-py = "^2.3.2"
bs4 = "^0.0.1"
uwuipy = "^0.1.7"

[tool.poetry.group.dev.dependencies]
black = {version = "^23.9.1", allow-prereleases = true}
Expand Down
4 changes: 2 additions & 2 deletions vyxalbot2/commands/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from vyxalbot2.commands import CommandSupplier
from vyxalbot2.types import CommonData, EventInfo
from vyxalbot2.util import RAPTOR
from uwuivy import uwuipy
from uwuipy import uwuipy

class StatusMood(Enum):
MESSAGE = "message"
Expand Down Expand Up @@ -140,4 +140,4 @@ async def commitCommand(self, event: EventInfo):
if result.returncode != 0:
yield "Failed to get commit info!"
else:
yield f"Commit: {result.stdout.decode('utf-8').strip()}"
yield f"Commit: {result.stdout.decode('utf-8').strip()}"

0 comments on commit 65d4eed

Please sign in to comment.