Format code with yapf

This commit fixes the style issues introduced in 4635bf8 according to the output
from yapf.

Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/556eb7b2-7632-467e-b1b4-8e463d91a708/
This commit is contained in:
deepsource-autofix[bot]
2021-05-21 03:34:15 +00:00
committed by GitHub
parent 4635bf8d24
commit fc57a76aa0
5 changed files with 34 additions and 21 deletions

View File

@@ -63,8 +63,7 @@ class AbsChunkedInputStream(InputStream, HaltListener):
raise IOError("Stream is closed!")
self._pos = where
self.check_availability(int(self._pos / (128 * 1024)),
False, False)
self.check_availability(int(self._pos / (128 * 1024)), False, False)
def skip(self, n: int) -> int:
if n < 0: