Cleanup: unused vars, imports

This commit is contained in:
Campbell Barton
2018-11-26 09:26:15 +11:00
parent 24c383cfc4
commit cb66a28d82
11 changed files with 13 additions and 25 deletions

View File

@@ -157,7 +157,7 @@ def main():
parser.add_option("-S", "--start", dest="start", help="From collected files, start with this index", metavar='int')
parser.add_option("-E", "--end", dest="end", help="From collected files, end with this index", metavar='int')
options, args = parser.parse_args(argv) # In this example we wont use the args
options, _args = parser.parse_args(argv) # In this example we wont use the args
if not argv:
parser.print_help()