diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-24 14:42:17 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-24 14:42:17 +0300 |
commit | e78225930f541e94cd050afe6895ccec0703316d (patch) | |
tree | 15c08fca072e079974bebb78304703297355742d /bin/mutual_friends.py | |
parent | README update (diff) | |
download | vk-scripts-e78225930f541e94cd050afe6895ccec0703316d.tar.gz vk-scripts-e78225930f541e94cd050afe6895ccec0703316d.zip |
code style
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'), |