Skip to content

Commit

Permalink
Fix minor typo in FatIO __repr__
Browse files Browse the repository at this point in the history
  • Loading branch information
Anonymous941 authored and nathanhi committed Feb 25, 2024
1 parent 138aaee commit b6294ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfatfs/FatIO.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __repr__(self) -> str:
return str(f'<{self.__class__.__name__} '
f'fs={self.fs} '
f'path="{self.name}" '
f'mode="{self.mode}"')
f'mode="{self.mode}">')

def seek(self, offset: int, whence: int = 0) -> int:
"""Seek to a given offset in the file.
Expand Down

0 comments on commit b6294ff

Please sign in to comment.