Skip to content

Commit 1386777

Browse files
committed
Rename variable
1 parent d9caa47 commit 1386777

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ldlite/_sqlx.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ def ingest_records(
105105
record = fr
106106
while record is not None:
107107
pkey, rb = record
108-
rpg = bytearray()
109-
rpg.extend(jver)
110-
rpg.extend(cast("bytes", rb))
111-
copy.write_row((pkey, rpg))
108+
rbpg = bytearray()
109+
rbpg.extend(jver)
110+
rbpg.extend(cast("bytes", rb))
111+
copy.write_row((pkey, rbpg))
112112
if not on_processed():
113113
break
114114
record = cast("tuple[bytes, bytes]", next(records, None))

0 commit comments

Comments
 (0)