Platform flunearyou

I configured this sensor:

- platform: flunearyou
  latitude: 40.730610
  longitude: -73.935242

And till yesterday with 0.83.1 i got these three sensors:

- sensor.avian_flu_symptoms
- sensor.flu_symptoms
- sensor.flulike_symptoms

Today, after upgrading to 0.83.2 i have no more these sensors.
What is wrong?

And more… someone told me using the same sensor he got nine sensors and not three…why?

Edit: i discovered inside the core.entity_registry file (inside .storage folder) these entries regardin that sensor:

            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.flu_symptoms",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_flu"
            },
            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.no_symptoms",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_none"
            },
            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.total_symptoms",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_total"
            },
            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.cdc_level_2",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_level2"
            },
            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.flulike_symptoms",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_symptoms"
            },
            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.avian_flu_symptoms",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_chick"
            },
            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.cdc_level",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_level"
            },
            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.leptospirosis_symptoms",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_lepto"
            },
            {
                "config_entry_id": null,
                "device_id": null,
                "disabled_by": null,
                "entity_id": "sensor.dengue_fever_symptoms",
                "name": null,
                "platform": "flunearyou",
                "unique_id": "40.73061,-73.935242_dengue"
            }

So why they are not shown?
What to do?

I just upgraded 83.3 because I was curious about this sensor. I don’t see them either, but I do see this in my homeassistant.log

Traceback (most recent call last):
  File "/srv/homeassistant/lib/python3.5/site-packages/homeassistant/helpers/entity_platform.py", line 128, in _async_setup_platform
    SLOW_SETUP_MAX_WAIT, loop=hass.loop)
  File "/usr/lib/python3.5/asyncio/tasks.py", line 400, in wait_for
    return fut.result()
  File "/usr/lib/python3.5/asyncio/futures.py", line 293, in result
    raise self._exception
  File "/usr/lib/python3.5/asyncio/tasks.py", line 239, in _step
    result = coro.send(None)
  File "/srv/homeassistant/lib/python3.5/site-packages/homeassistant/components/sensor/flunearyou.py", line 91, in async_setup_platform
    await fny.async_update()
  File "/srv/homeassistant/lib/python3.5/site-packages/homeassistant/components/sensor/flunearyou.py", line 207, in async_update
    CATEGORY_CDC_REPORT, self._client.cdc_reports.status)
  File "/srv/homeassistant/lib/python3.5/site-packages/homeassistant/components/sensor/flunearyou.py", line 196, in _get_data
    self.data[category] = await method()
  File "/srv/homeassistant/lib/python3.5/site-packages/pyflunearyou/cdc.py", line 57, in status
    return adjust_status(info)
  File "/srv/homeassistant/lib/python3.5/site-packages/pyflunearyou/cdc.py", line 23, in adjust_status
    STATUS_MAP[int(info['level'])],
KeyError: 'level'
2018-12-07 21:45:19 ERROR (MainThread) [aiohttp.access] Error in logging
Traceback (most recent call last):
  File "aiohttp\_helpers.pyx", line 24, in aiohttp._helpers.reify.__get__
KeyError: 'remote'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/srv/homeassistant/lib/python3.5/site-packages/aiohttp/helpers.py", line 462, in log
    for key, value in fmt_info:
  File "/srv/homeassistant/lib/python3.5/site-packages/aiohttp/helpers.py", line 454, in <genexpr>
    for key, method in self._methods)
  File "/srv/homeassistant/lib/python3.5/site-packages/aiohttp/helpers.py", line 412, in _format_a
    ip = request.remote
  File "aiohttp\_helpers.pyx", line 32, in aiohttp._helpers.reify.__get__
  File "aiohttp\_helpers.pyx", line 26, in aiohttp._helpers.reify.__get__
  File "/srv/homeassistant/lib/python3.5/site-packages/aiohttp/web_request.py", line 343, in remote
    peername = self.transport.get_extra_info('peername')
  File "/usr/lib/python3.5/asyncio/sslproto.py", line 306, in get_extra_info
    return self._ssl_protocol._get_extra_info(name, default)
  File "/usr/lib/python3.5/asyncio/sslproto.py", line 546, in _get_extra_info
    return self._transport.get_extra_info(name, default)
AttributeError: 'NoneType' object has no attribute 'get_extra_info'```

Filed a bug.