Skip to content

Commit

Permalink
fix for mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Mildophin committed Oct 14, 2024
1 parent aea0728 commit 6ef1571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pasqal_cloud/batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def sequence_builder(self) -> Optional[str]:
return self._sequence_builder

@sequence_builder.setter
def sequence_builder(self, value):
def sequence_builder(self, value: Any) -> None:
self._sequence_builder = value

@property
Expand Down

0 comments on commit 6ef1571

Please sign in to comment.