#!/usr/bin/env python
# Copyright (c) 2012 Paul Tagliamonte <paultag@sunlightfoundation.com>
# under the terms of the LICENSE file

from __future__ import print_function
from sunlight import openstates

md_cttys = openstates.committees( state='md', chamber='upper' )
for ctty in md_cttys:
        print( "%s (%s)" % ( ctty['committee'], ctty['chamber'] ))
