Skip to content

Commit 56c4379

Browse files
authored
Fix __repr__ of Record type (#583)
1 parent d581ad6 commit 56c4379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gel/datatypes/record.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ record_repr(EdgeRecord *o)
200200
_PyUnicodeWriter_Init(&writer);
201201
writer.overallocate = 1;
202202

203-
if (_PyUnicodeWriter_WriteASCIIString(&writer, "Record{", 4) < 0) {
203+
if (_PyUnicodeWriter_WriteASCIIString(&writer, "Record{", 7) < 0) {
204204
goto error;
205205
}
206206

0 commit comments

Comments
 (0)