Hi! I think PR #260 introduced a `TypeError`: [Line 86](https://github.com/python/importlib_resources/blob/4ff0b1bce92e3e77f9f86cbe40a518c038a4935f/importlib_resources/_common.py#L86) of `_common.py` reads: ``` @resolve.register def _(cand: None) -> types.ModuleType: ``` and leads to `AssertionError: Invalid annotation for 'cand'. None is not a class.` from [this line](https://github.com/python/cpython/blob/c7ec7808191fc29f75d96496b682bd34be770a8f/Lib/functools.py#L827) in functools. Is a problem with using python 3.7? Thanks a lot!