start new:
tmux
start new with session name:
tmux new -s myname
| import argh | |
| def do_the_thing(required_arg, optional_arg=1, other_optional_arg=False): | |
| """ | |
| I am a docstring | |
| """ | |
| print((required_arg, type(required_arg))) | |
| print((optional_arg, type(optional_arg))) | |
| print((other_optional_arg, type(other_optional_arg))) |