Skip to content

Commit

Permalink
Update xbmcvfs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
romanvm committed Mar 10, 2024
1 parent 5d16eb5 commit eb9d2f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmcvfs.py
Expand Up @@ -50,7 +50,7 @@ def __enter__(self) -> 'File': # Required for context manager

def __exit__(self, exc_type, exc_val, exc_tb): # Required for context manager
pass

def read(self, numBytes: int = 0) -> str:
"""
Read file parts as string.
Expand Down Expand Up @@ -99,7 +99,7 @@ def readBytes(self, numBytes: int = 0) -> bytearray:
"""
return bytearray()

def write(self, buffer: Union[str, bytes, bytearray]) -> bool:
def write(self, buffer: Union[str, bytes, bytearray]) -> bool:
"""
To write given data in file.
Expand Down

0 comments on commit eb9d2f3

Please sign in to comment.