Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def do_PROVIDERS(self, line):
"""Print the list of available providers."""
providers = list(registry.services.keys())
try:
providers.remove('default')
except:
pass
self.columnize(sorted(providers), self.maxcol - 1)