Skip to content

Commit

Permalink
fix bug in size
Browse files Browse the repository at this point in the history
  • Loading branch information
konakaji committed Sep 29, 2023
1 parent 2efce26 commit 6218560
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qswift/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_tau(self, index):
return self.taus[math.floor(index / self.operator_pool.size())]

def size(self):
self.operator_pool.size() * len(self.taus)
return self.operator_pool.size() * len(self.taus)


class Sequence:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="qswift",
version="0.0.16",
version="0.0.17",
author="kouhei nakaji",
author_email="[email protected]",
description="You can receive the message 'Hello!!!'",
Expand Down

0 comments on commit 6218560

Please sign in to comment.