Skip to content

Commit

Permalink
automated push from 1695d8ac31065a4325527300963c96863dd8d3b2
Browse files Browse the repository at this point in the history
  • Loading branch information
qcware-cibot committed May 11, 2022
1 parent 21987e5 commit 196d9f6
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
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "qcware"
version = "7.4.2"
version = "7.4.3"
description = "The python client for QC Ware's Forge SaaS quantum computing product"
authors = ["Vic Putz <vic.putz@qcware.com>","Bryan Burr <bryan.e.burr@qcware.com"]
packages = [
Expand Down
2 changes: 1 addition & 1 deletion qcware/forge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
try:
__version__ = pkg_resources.get_distribution("qcware").version
except Exception:
__version__ = "7.4.2"
__version__ = "7.4.3"

import logging

Expand Down
2 changes: 1 addition & 1 deletion qcware/forge/api_calls/api_call_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ApiCall:
def __call__(self, *args, **kwargs):
try:
result = self.do(*args, **kwargs)
return self.do(*args, **kwargs)
return result
except Exception as e:
raise e

Expand Down

0 comments on commit 196d9f6

Please sign in to comment.