flake8: This is it. Green!

This commit is contained in:
Sebastian Spaeth 2023-09-18 13:11:12 +02:00
parent 329981fe49
commit 7c60a9037c

View File

@ -181,7 +181,7 @@ def parse_options() -> argparse.Namespace:
parser.add_argument('-d', '--debug', action='store_true', help="Turn debug output on.")
args: argparse.Namespace = parser.parse_args()
if args.debug:
loglevel=logging.DEBUG
loglevel = logging.DEBUG
logging.basicConfig(level=loglevel, format='%(levelname)s - %(message)s')
return args