dvershinin / lastversion

Line too long FLK-E501
Style
Minor
3 occurrences in this check
line too long (116 > 100 characters)
361                                     prog='lastversion')
362    parser.add_argument('action', nargs='?', default='get',
363                        help='Action to run. Default: get',
364                        choices=['get', 'download', 'extract', 'unzip', 'test', 'format', 'install', 'update-spec'])365    parser.add_argument('repo', metavar='<repo URL or string>',
366                        help='Repository in format owner/name or any URL that belongs to it, or a version string')
367    # affects what is considered last release
line too long (114 > 100 characters)
363                        help='Action to run. Default: get',
364                        choices=['get', 'download', 'extract', 'unzip', 'test', 'format', 'install', 'update-spec'])
365    parser.add_argument('repo', metavar='<repo URL or string>',
366                        help='Repository in format owner/name or any URL that belongs to it, or a version string')367    # affects what is considered last release
368    parser.add_argument('--pre', dest='pre', action='store_true',
369                        help='Include pre-releases in potential versions')
line too long (116 > 100 characters)
373                        help='Will give you an idea of what is happening under the hood, '
374                             '-vv to increase verbosity level')
375    # no --download = False, --download filename.tar, --download = None
376    parser.add_argument('-d', '-o', '--download', '--output', dest='download', nargs='?', default=False, const=None,377                        metavar='FILENAME', help='Download with custom filename')
378    # how / which data of last release we want to present
379    # assets will give download urls for assets if available and sources archive otherwise