Refactor configure_logging

This commit is contained in:
James R. Barlow
2019-05-20 14:54:34 -07:00
parent 7ee0c52a57
commit 2fdaa76a0d
4 changed files with 24 additions and 19 deletions
-4
View File
@@ -20,10 +20,6 @@ import argparse
from . import PROGRAM_NAME, VERSION
# -------------
# Parser
def numeric(basetype, min_=None, max_=None):
"""Validator for numeric params"""
min_ = basetype(min_) if min_ is not None else None