Skip to content

Commit

Permalink
fix missing rename
Browse files Browse the repository at this point in the history
  • Loading branch information
renxida committed Dec 2, 2024
1 parent 1faf214 commit 62d3e97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def acquire_free_pages(self, count: int) -> List[PageInfo]:
except queue.Empty:
return None

def release_pages(self, pages):
def free_pages(self, pages):
for page in pages:
self._queue.put(page)

Expand Down

0 comments on commit 62d3e97

Please sign in to comment.