PEP 8 and code cleanup
[mw] / src / mw / cli.py
index d5dd6dc875d7699262868674e04019990b2bf9c2..54fbd7734a8e2be938d436a41e61f93ac48cb7e4 100644 (file)
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# with this program.  If not, see <http://www.gnu.org/licenses/>.
 ###
 
-import inspect
 import mw.clicommands
 import os
 import sys
-from pprint import pprint
+
 
 class CLI(object):
+
     def __init__(self):
         self.me = os.path.basename(sys.argv[0])
         self.commands = {}

Benjamin Mako Hill || Want to submit a patch?