We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa14cc commit 33145daCopy full SHA for 33145da
semstr/conversion/export.py
@@ -21,7 +21,7 @@ def __init__(self):
21
def __call__(self):
22
self._id += 1
23
assert self._id <= ExportConverter.MAX_TERMINAL_ID, \
24
- "More than %d nodes found" % ExportConverter.MAX_TERMINAL_ID
+ "More than %d nodes found" % (ExportConverter.MAX_TERMINAL_ID - ExportConverter.MIN_TERMINAL_ID + 1)
25
return str(self._id)
26
27
def __init__(self):
0 commit comments