PEP8 and other minor styles changes

This commit is contained in:
Chris Rands 2018-09-12 16:04:43 +02:00 committed by Heng Li
parent 98c48a1c45
commit 791e89ce0f
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python
import sys, getopt
import sys
import getopt
import mappy as mp
def main(argv):
@ -17,7 +18,8 @@ def main(argv):
print(" -c output the cs tag")
sys.exit(1)
preset, min_cnt, min_sc, k, w, bw, out_cs = None, None, None, None, None, None, False
preset = min_cnt = min_sc = k = w = bw = None
out_cs = False
for opt, arg in opts:
if opt == '-x': preset = arg
elif opt == '-n': min_cnt = int(arg)