Skip to content
Snippets Groups Projects
Commit 2939b397 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix a bug for SequentialIssuer

parent b914c935
No related branches found
No related tags found
No related merge requests found
# v2.14.43 # v2.14.43
* bug fixed for `SequentialIssuer`
__version__ = '2.14.43a1' __version__ = '2.14.43a2'
...@@ -14,7 +14,7 @@ class SequentialIssuer(Monitor): ...@@ -14,7 +14,7 @@ class SequentialIssuer(Monitor):
def __init__(self, start: int = 0): def __init__(self, start: int = 0):
super().__init__() super().__init__()
self.start = 0 self.start = start
@Monitor.synchronized @Monitor.synchronized
def issue(self) -> int: def issue(self) -> int:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment