mypy coverage improvements

mypy has not been checking untyped functions, and now emits a note saying as much:

plugins/ds18b20/test.py:113: note: By default the bodies of untyped functions are not checked, consider using --check-untyped-defs  [annotation-unchecked]

Enabling the tests breaks a ton of stuff, so we should make all functions typed and fix the broken tests.