Skip to content

Commit d80952c

Browse files
committed
250607.1
1 parent ec4987b commit d80952c

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed
Binary file not shown.

easycoder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
from .ec_timestamp import *
1010
from .ec_value import *
1111

12-
__version__ = "250605.1"
12+
__version__ = "250607.1"

easycoder/ec_program.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ def flush():
1212
global queue
1313
while len(queue):
1414
item = queue.popleft()
15-
item.program.flush(item.pc)
15+
if item.pc != None:
16+
item.program.flush(item.pc)
1617

1718
class Program:
1819

0 commit comments

Comments
 (0)