Upgrade pylint to 2.12.1 (#60375)

This commit is contained in:
Marc Mueller 2021-11-26 00:13:27 +01:00 committed by GitHub
parent dab2b17a17
commit 25f8d4a189
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 36 additions and 32 deletions

View file

@ -94,10 +94,10 @@ class AirSensor(SensorEntity):
ICON = "mdi:cloud-outline"
def __init__(self, name, APIdata):
def __init__(self, name, api_data):
"""Initialize the sensor."""
self._name = name
self._api_data = APIdata
self._api_data = api_data
self._site_data = None
self._state = None
self._updated = None