dvershinin / lastversion

Inconsistent return statements PYL-R1710
Style
Minor
4 months ago2 years old
Either all return statements in a function should return an expression, or none of them should.
549    sys.exit(1)
550
551
552def main(argv=None):553    """
554    The entrypoint to CLI app.
555