Lint code

This commit is contained in:
Zoe Roux 2023-11-29 02:00:52 +01:00
parent f2ebc5659e
commit e0b2e8e937

View File

@ -210,7 +210,8 @@ class Scanner:
if r.status == 409 and ( if r.status == 409 and (
(path == "shows" and ret["startAir"][:4] != str(data["start_air"].year)) (path == "shows" and ret["startAir"][:4] != str(data["start_air"].year))
or ( or (
path == "movies" and ret["airDate"][:4] != str(data["air_date"].year) path == "movies"
and ret["airDate"][:4] != str(data["air_date"].year)
) )
): ):
logging.info( logging.info(
@ -224,14 +225,16 @@ class Scanner:
async def delete(self, path: str): async def delete(self, path: str):
logging.info("Deleting %s", path) logging.info("Deleting %s", path)
async with self._client.delete( async with self._client.delete(
f"{self._url}/movies?filter=path eq \"{path}\"", headers={"X-API-Key": self._api_key} f'{self._url}/movies?filter=path eq "{path}"',
headers={"X-API-Key": self._api_key},
) as r: ) as r:
if not r.ok: if not r.ok:
logging.error(f"Request error: {await r.text()}") logging.error(f"Request error: {await r.text()}")
r.raise_for_status() r.raise_for_status()
async with self._client.delete( async with self._client.delete(
f"{self._url}/episodes?filter=path eq \"{path}\"", headers={"X-API-Key": self._api_key} f'{self._url}/episodes?filter=path eq "{path}"',
headers={"X-API-Key": self._api_key},
) as r: ) as r:
if not r.ok: if not r.ok:
logging.error(f"Request error: {await r.text()}") logging.error(f"Request error: {await r.text()}")