Skip to content

Commit

Permalink
Merge pull request #13 from natanrmaia:development
Browse files Browse the repository at this point in the history
Correção de bug exception
  • Loading branch information
natanrmaia authored May 2, 2024
2 parents d5f489e + 2a181b3 commit 6e13846
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blizzardAPI/exceptions/handler.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class HTTPException:
class HTTPException(Exception):
"""
Represents an exception that occurs during an HTTP request.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = 'NDEV - Python BlizzardAPI'
copyright = '2024, NDEV'
author = 'NDEV'
release = '0.2.2'
release = '0.2.3'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="python-ndev-blizzardapi",
version="0.2.2",
version="0.2.3",
packages=find_packages(),
install_requires=[
"requests>=2.28.2",
Expand Down

0 comments on commit 6e13846

Please sign in to comment.