Mypy checks format strings which is cool, for example this code will not pass: ```python v = "some" print("%d" % v) ``` But it didn't check them in logger calls, this code passes: ```python import logging v = "some" logging.debug("%d", v) ``` Wouldn't it be great if mypy could check this too?