From 439b165072539009a83f795602f115ade6c801e5 Mon Sep 17 00:00:00 2001 From: Dimitrios Christidis Date: Fri, 2 Aug 2024 10:07:12 +0200 Subject: [PATCH] Common: Remove unnecessary use of str.strip() --- common/check_new_dids | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/check_new_dids b/common/check_new_dids index 895b796..b9238c1 100755 --- a/common/check_new_dids +++ b/common/check_new_dids @@ -55,7 +55,7 @@ if __name__ == '__main__': for server in PROM_SERVERS: try: - push_to_gateway(server.strip(), job='check_new_dids', registry=registry) + push_to_gateway(server, job='check_new_dids', registry=registry) except Exception: continue