From a444a56ed3c1839383d0c5b8de91887394c7c662 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 24 Feb 2024 16:12:21 +0300 Subject: [PATCH] Style: Fix `flake8` error E111 indentation is not a multiple of 4 --- xsetbg-wsgi.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xsetbg-wsgi.py b/xsetbg-wsgi.py index f4b7873..f0ec153 100755 --- a/xsetbg-wsgi.py +++ b/xsetbg-wsgi.py @@ -13,14 +13,14 @@ from xsetbg import change as _change # get httpd settings from config if xsetbg_conf.has_option("httpd", "host"): - host = xsetbg_conf.get("httpd", "host") + host = xsetbg_conf.get("httpd", "host") else: - host = 'localhost' + host = 'localhost' if xsetbg_conf.has_option("httpd", "port"): - port = xsetbg_conf.getint("httpd", "port") + port = xsetbg_conf.getint("httpd", "port") else: - error("Config must specify a port to listen. Abort.") + error("Config must specify a port to listen. Abort.") commands = {} -- 2.39.2