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 b09ad16 commit 2a87d0fCopy full SHA for 2a87d0f
Makefile
@@ -1,4 +1,4 @@
1
-.PHONY: test clean coverage lint distclean
+.PHONY: test clean coverage lint distclean release
2
3
PYTHON ?= python3
4
zxtools/zeus2txt.py
@@ -31,8 +31,8 @@ def read_file(src_file):
31
while True:
32
chunk = src_file.read(CHUNK_SIZE)
33
if chunk:
34
- for byte in chunk:
35
- yield byte
+ for cur_char in chunk:
+ yield cur_char
36
else:
37
break
38
0 commit comments