On `Python 3.10.1`, a fresh `pip install us` yields this TypeError: ```python Python 3.10.1 (main, Dec 22 2021, 05:19:12) [GCC 11.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import us >>> us.states.lookup('maryland') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/max/.pyenv/versions/3.10.1/lib/python3.10/site-packages/us/states.py", line 86, in lookup val = jellyfish.metaphone(val) TypeError: str argument expected ``` This is the output of `pip freeze`: ``` $ pip freeze jellyfish==0.6.1 us==2.0.2 ``` Is this a known issue?