Skip to content

Commit

Permalink
remove raise
Browse files Browse the repository at this point in the history
  • Loading branch information
surcyf123 committed Jan 12, 2024
1 parent 40d1e71 commit 09783e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion template/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


# version must stay on line 22
__version__ = "3.1.4"
__version__ = "3.1.5"
version_split = __version__.split(".")
__spec_version__ = (
(1000 * int(version_split[0]))
Expand Down
1 change: 0 additions & 1 deletion validators/image_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ async def download_image(self, url, session):
return await asyncio.to_thread(Image.open, BytesIO(content))
except Exception as e:
bt.logging.error(f"Exception occurred while downloading image: {traceback.format_exc()}")
raise


async def score_responses(self, query_responses, uid_to_question, metagraph):
Expand Down

0 comments on commit 09783e7

Please sign in to comment.