Add per-file-ignore to pylint (#86289)

This commit is contained in:
epenet 2023-01-22 17:26:24 +01:00 committed by GitHub
parent a0810053f1
commit 30bf0634fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
114 changed files with 123 additions and 226 deletions

View file

@ -58,7 +58,7 @@ async def get_data_from_library(
client = SensiboClient("123467890", aioclient_mock.create_session(hass.loop))
with patch("pysensibo.SensiboClient.async_get_devices", return_value=load_json):
output = await client.async_get_devices_data()
await client._session.close() # pylint: disable=protected-access
await client._session.close()
return output