Skip to content

Commit c9f6940

Browse files
authored
Fix new buffer name
1 parent 47181f6 commit c9f6940

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mypy/exportjson.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ def convert_unbound_type(self: UnboundType) -> Json:
553553

554554

555555
def convert_binary_cache_meta_to_json(data: bytes, data_file: str) -> Json:
556-
meta = CacheMeta.read(Buffer(data), data_file)
556+
meta = CacheMeta.read(ReadBuffer(data), data_file)
557557
assert meta is not None, f"Error reading meta cache file associated with {data_file}"
558558
return {
559559
"id": meta.id,

0 commit comments

Comments
 (0)