Skip to content

Commit

Permalink
Mypy fixes again
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish committed Feb 7, 2024
1 parent 9bc8604 commit c291a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiskit_ibm_runtime/utils/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def default(self, obj: Any) -> Any: # pylint: disable=arguments-differ
if isinstance(obj, ParameterView):
return obj.data
if isinstance(obj, Instruction):
kwargs: dict[str, object] = {"use_symengine": bool(optionals.HAS_SYMENGINE)}
kwargs = {"use_symengine": bool(optionals.HAS_SYMENGINE)}
if _TERRA_VERSION[0] >= 1:
# NOTE: This can be updated only after the server side has
# updated to a newer qiskit version.
Expand Down

0 comments on commit c291a91

Please sign in to comment.