From e8857149e12a22e88052ebd0b53fa6a0e477f93c Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Fri, 22 Nov 2019 18:16:29 -0800 Subject: [PATCH] Remove unused sys and logging from main shim --- certbot/certbot/main.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/certbot/certbot/main.py b/certbot/certbot/main.py index e947d4348..b329f15c5 100644 --- a/certbot/certbot/main.py +++ b/certbot/certbot/main.py @@ -1,13 +1,7 @@ """Certbot main public entry point.""" -import logging.handlers -import sys - from certbot._internal import main as internal_main -logger = logging.getLogger(__name__) - - def main(cli_args=None): """Command line argument parsing and main script execution.