This is a follow up to Log probe requests of WiFi devices focussing on a specific element of the code.
How can I indent this code to make it look great and be well formatted?
parser = argparse.ArgumentParser(description='Collect WiFi probe requests')
parser.add_argument('-i', '--interface',
default=default_interface,
help='the interface used for monitoring')
parser.add_argument('--tshark-path',
default=distutils.spawn.find_executable("tshark"),
help='path to tshark binary')
parser.add_argument('--ifconfig-path',
default=distutils.spawn.find_executable("ifconfig"),
help='path to ifconfig')
parser.add_argument('--iwconfig-path',
default=distutils.spawn.find_executable("iwconfig"),
help='path to iwconfig')
parser.add_argument('-o', '--output',
default='-',
help='output file (path or - for stdout)')
parser.add_argument('-c', '--channel',
default='all',
help='channel/s to hop (i.e. 3 or 3,6,9 or 3-14 or all or 0 for current channel')
parser.add_argument('--verbose',
action='store_true',
help='verbose information')
parser.add_argument('-p', '--only-probes',
action='store_true',
help='only saves probe data spit by newline')
parser.add_argument('--delay',
default=5,
help='delay between channel change')
args = parser.parse_args()