diff --git a/pyproject.toml b/pyproject.toml index 90e863f..cb7e171 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/pypxl/__init__.py b/pypxl/__init__.py index 8b699e6..43cd068 100644 --- a/pypxl/__init__.py +++ b/pypxl/__init__.py @@ -9,6 +9,6 @@ __author__ = "Kile" __license__ = "MIT" __copyright__ = "Copyright 2021 Kile" -__version__ = "0.1.7" +__version__ = "0.1.8" from .client import Pxlapi \ No newline at end of file diff --git a/pypxl/client.py b/pypxl/client.py index b90cd47..059068d 100644 --- a/pypxl/client.py +++ b/pypxl/client.py @@ -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():