Skip to content

Commit

Permalink
Fixed an error on client and bot.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oscar Fernando Davis Flores authored and Oscar Fernando Davis Flores committed Jun 30, 2024
1 parent ddcda18 commit 8ac34e7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 153 deletions.
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: pymino
Version: 1.2.7.1
Version: 1.2.7.2
Summary: Easily create a bot for Amino Apps using a modern easy to use synchronous library.
Home-page: https://github.com/forevercynical/pymino
Author: forevercynical
Expand Down
148 changes: 0 additions & 148 deletions README.md

This file was deleted.

2 changes: 1 addition & 1 deletion pymino/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__author__ = 'cynical'
__license__ = 'MIT'
__copyright__ = 'Copyright 2023 Cynical'
__version__ = '1.2.7.1'
__version__ = '1.2.7.2'
__description__ = 'A Python wrapper for the aminoapps.com API'

from .bot import Bot
Expand Down
2 changes: 1 addition & 1 deletion pymino/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ def authenticate(self, email: str=None, password: str=None, secret: str=None, de
data=str(data).encode("utf-8")
)
if Req.status_code != 200:
raise Exception(response.text)
raise Exception(Req.text)

return response

Expand Down
2 changes: 1 addition & 1 deletion pymino/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ def authenticate(self, email: str=None, password: str=None, secret: str=None, de
data=str(data).encode("utf-8")
)
if Req.status_code != 200:
raise Exception(response.text)
raise Exception(Req.text)

return response

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pymino
version = 1.2.7.1
version = 1.2.7.2
author = forevercynical
author_email = me@cynical.gg
description = Easily create a bot for Amino Apps using a modern easy to use synchronous library.
Expand Down

0 comments on commit 8ac34e7

Please sign in to comment.