Skip to content

Commit 2a87d0f

Browse files
author
Kirill V. Lyadvinsky
committed
Possible conflict with variable name
1 parent b09ad16 commit 2a87d0f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: test clean coverage lint distclean
1+
.PHONY: test clean coverage lint distclean release
22

33
PYTHON ?= python3
44

zxtools/zeus2txt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def read_file(src_file):
3131
while True:
3232
chunk = src_file.read(CHUNK_SIZE)
3333
if chunk:
34-
for byte in chunk:
35-
yield byte
34+
for cur_char in chunk:
35+
yield cur_char
3636
else:
3737
break
3838

0 commit comments

Comments
 (0)