Skip to content

Commit f3e692d

Browse files
committed
Fix missing character in README example.
1 parent a4bf86f commit f3e692d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,6 @@ class Args(Tap):
500500
arg1: int
501501
arg2: str
502502

503-
rgs = Args(config_files=['my_config_shlex.txt']).parse_args(parse_config_files_with_shlex=True)
503+
args = Args(config_files=['my_config_shlex.txt']).parse_args(parse_config_files_with_shlex=True)
504504
```
505505
to get the resulting `args = {'arg1': 21, 'arg2': 'two three four'}`

0 commit comments

Comments
 (0)