Skip to content

Commit

Permalink
Fixing bug that made pypxl unusable
Browse files Browse the repository at this point in the history
  • Loading branch information
Kile committed Apr 11, 2021
1 parent 91160ce commit 8657cd5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[tool.poetry]
name = "pypxl"
version = "0.1.7"
version = "0.1.8"
description = "An Asynchronos API wrapper for https://pxlapi.dev"
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion pypxl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
__author__ = "Kile"
__license__ = "MIT"
__copyright__ = "Copyright 2021 Kile"
__version__ = "0.1.7"
__version__ = "0.1.8"

from .client import Pxlapi
2 changes: 1 addition & 1 deletion pypxl/client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import aiohttp
import json
from errors import PxlapiException, InvalidFlag, TooManyCharacters, InvalidSafety, InvalidEyes
from .errors import PxlapiException, InvalidFlag, TooManyCharacters, InvalidSafety, InvalidEyes

class Pxlapi():

Expand Down

0 comments on commit 8657cd5

Please sign in to comment.