def get_immediate_subdirectories()

in solutions_builder/cli/cli_utils.py [0:0]


def get_immediate_subdirectories(a_dir):
  return sorted([
      name for name in os.listdir(a_dir)
      if os.path.isdir(os.path.join(a_dir, name))
  ])