facebook / PathPicker

PathPicker accepts a wide range of input -- output from git commands, grep results, searches -- pretty much anything. After parsing the input, PathPicker presents you with a nice UI to select which files you're interested in. After that you can open them in your favorite editor or execute arbitrary commands.
https://facebook.github.io/PathPicker/
MIT License
5.12k stars 283 forks source link

Add type hints (1/n) #383

Closed KapJI closed 3 years ago

KapJI commented 3 years ago

Start adding type hints to modules.

For argparse namespace I need to call the function to convert argument to desired type again (first one it was called by argparse itself). Otherwise those args have type Any. But it should be safe to do so, because the first time this call succeeded.