Skip to content

Commit

Permalink
🐛 Fixed errors import
Browse files Browse the repository at this point in the history
  • Loading branch information
visuxls committed Aug 8, 2023
1 parent 57299fc commit b11dacc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="tipranks",
version="0.0.6",
version="0.0.7",
author="visuxls",
description="Python interface to communicate with TipRanks API.",
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion tipranks/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from errors import (
from .errors import (
TipRanksStatusCodeError,
TipRanksArgumentError,
TipRanksRequestError
Expand Down
2 changes: 1 addition & 1 deletion tipranks/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class TipRanksRequestError(Exception):
pass

class TipRanksStatusCodeError(Exception):
pass
pass

class TipRanksArgumentError(Exception):
pass

0 comments on commit b11dacc

Please sign in to comment.