Skip to content

Commit

Permalink
remove unused _closed attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
StarrFox committed Dec 15, 2023
1 parent 3c8ebdb commit 133baa8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion wizwad/wad.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def __init__(self, file: Union[Path, str]):
self._file_pointer = open(self.file_path, "rb")
self._mmap = mmap(self._file_pointer.fileno(), 0, access=ACCESS_READ)

self._closed: bool = False
self._size: None | int = None
self._refreshed_once = False

Expand Down

0 comments on commit 133baa8

Please sign in to comment.