diff --git a/xbmcvfs.py b/xbmcvfs.py index bd68cdd..30fd30b 100644 --- a/xbmcvfs.py +++ b/xbmcvfs.py @@ -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. @@ -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.