Commit f93390a6 authored by Georg Brandl's avatar Georg Brandl

Remove unused imports.

parent 9e7dbc8a
......@@ -73,11 +73,9 @@ import bdb
import dis
import os
import re
import code
import pprint
import traceback
import inspect
import types
class Restart(Exception):
......@@ -528,7 +526,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
arg = arg[colon+1:].lstrip()
try:
lineno = int(arg)
except ValueError as msg:
except ValueError:
self.error('Bad lineno: %s' % arg)
return
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment