def print_help(self): super(ArgumentParser, self).print_help() if self.prog == 'conda' and sys.argv[1:] in ([], ['help'], ['-h'], ['--help']): from conda.cli.find_commands import help help()
def print_help(self): super(ArgumentParser, self).print_help() if self.prog == "conda" and sys.argv[1:] in ([], ["help"], ["-h"], ["--help"]): from conda.cli.find_commands import help help()
def print_help(self): super(ArgumentParser, self).print_help() if sys.argv[1:] in ([], ['help'], ['-h'], ['--help']): from conda.cli.find_commands import help help()