Format python code with Black (#12663)

This commit is contained in:
Jellyfrog
2021-03-28 18:02:33 +02:00
committed by GitHub
parent f9b25ccdbc
commit 9946fe8b15
12 changed files with 1295 additions and 586 deletions

View File

@@ -10,20 +10,36 @@ import LibreNMS
from logging import info
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='LibreNMS Service - manages polling and other periodic processes')
parser.add_argument('-g', '--group', type=int, help="Set the poller group for this poller")
parser.add_argument('-v', '--verbose', action='count', help="Show verbose output.")
parser.add_argument('-d', '--debug', action="store_true", help="Show debug output.")
parser.add_argument('-m', '--multiple', action="store_true", help="Allow multiple instances of the service.")
parser.add_argument('-t', '--timestamps', action="store_true", help="Include timestamps in the logs (not normally needed for syslog/journald")
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="LibreNMS Service - manages polling and other periodic processes"
)
parser.add_argument(
"-g", "--group", type=int, help="Set the poller group for this poller"
)
parser.add_argument("-v", "--verbose", action="count", help="Show verbose output.")
parser.add_argument("-d", "--debug", action="store_true", help="Show debug output.")
parser.add_argument(
"-m",
"--multiple",
action="store_true",
help="Allow multiple instances of the service.",
)
parser.add_argument(
"-t",
"--timestamps",
action="store_true",
help="Include timestamps in the logs (not normally needed for syslog/journald",
)
args = parser.parse_args()
if args.timestamps:
logging.basicConfig(format='%(asctime)s %(threadName)s(%(levelname)s):%(message)s')
logging.basicConfig(
format="%(asctime)s %(threadName)s(%(levelname)s):%(message)s"
)
else:
logging.basicConfig(format='%(threadName)s(%(levelname)s):%(message)s')
logging.basicConfig(format="%(threadName)s(%(levelname)s):%(message)s")
if args.verbose:
logging.getLogger().setLevel(logging.INFO)
@@ -42,7 +58,11 @@ if __name__ == '__main__':
service.config.single_instance = args.multiple
if args.group:
service.config.group = [ args.group ]
service.config.group = [args.group]
info('Entering main LibreNMS service loop on {}/{}...'.format(os.getpid(), threading.current_thread().name))
info(
"Entering main LibreNMS service loop on {}/{}...".format(
os.getpid(), threading.current_thread().name
)
)
service.start()