https://microbit-micropython.readthedocs.io/en/v2-docs/microphone.html#microbit.microphone.current_event says "return: the name of the last recorded sound event, SoundEvent('loud') or SoundEvent('quiet')" In practice it seems that the first result is None: ```python >>> repr(microphone.current_event()) 'None' >>> repr(microphone.current_event()) "SoundEvent('quiet')" ``` should the docs be updated to mention this or is it a bug in the implementation?