diff options
Diffstat (limited to 'bin/mutual_friends.py')
-rw-r--r-- | bin/mutual_friends.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mutual_friends.py b/bin/mutual_friends.py index c0d8ffc..56b19f6 100644 --- a/bin/mutual_friends.py +++ b/bin/mutual_friends.py @@ -83,7 +83,7 @@ def _parse_args(args=sys.argv): help='user IDs or "screen names"') parser.add_argument('--output-format', dest='fmt', type=_parse_output_format, default=OutputFormat.CSV, - choices=tuple(fmt for fmt in OutputFormat), + choices=OutputFormat, help='specify output format') parser.add_argument('-o', '--output', dest='fd', metavar='PATH', type=argparse.FileType('w', encoding='utf-8'), |