I have some function that use pathlib.Path as argument, like following script ```python from pathlib import Path import fire def test_fire(path: Path): print(type(path)) print(path) if __name__ == "__main__": fire.Fire(test_fire) ``` I simply test it with this. ```bash python test_fire.py "/some_path_string" <class 'str'> /some_path_string ``` I expect to get a `pathlib.Path` object rather than `str`. Is there any way that I can do this? Thanks a lot.