Skip to content

Commit

Permalink
Added missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
trag1c committed Feb 7, 2023
1 parent 81d2595 commit f1c0e2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Creates a Paperbush parser; takes a string pattern written in the [Paperbush cus
Paperbush.parse(args: str | list[str]) -> argparse.Namespace
```

Parses command line arguments using the predefined pattern and returns an [`argparse.Namespace`](https://docs.python.org/3/library/argparse.html#argparse.Namespace) object. Accepts either a list of strings or a single string which is split with [`shlex.split`](https://docs.python.org/3/library/shlex.html#shlex.split)).
Parses command line arguments using the predefined pattern and returns an [`argparse.Namespace`](https://docs.python.org/3/library/argparse.html#argparse.Namespace) object. Accepts either a list of strings or a single string (which is split with [`shlex.split`](https://docs.python.org/3/library/shlex.html#shlex.split)).


## Paperbush.parse_args
Expand Down

0 comments on commit f1c0e2b

Please sign in to comment.