From 842978a92fc8d4d0a12e7f7dae1f8f7b524dff9f Mon Sep 17 00:00:00 2001 From: Andrew White Date: Thu, 30 Jul 2026 11:59:01 -0500 Subject: [PATCH] fix: unique_hosts wraps set in redundant list() Signed-off-by: Andrew White --- bobber/bobber.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobber/bobber.py b/bobber/bobber.py index 38ef00a..86089c6 100644 --- a/bobber/bobber.py +++ b/bobber/bobber.py @@ -57,7 +57,7 @@ def unique_hosts(hosts: str) -> str: identical. """ host_list = hosts.split(',') - if len(host_list) != len(list(set(host_list))): + if len(host_list) != len(set(host_list)): raise ArgumentTypeError('Hosts must be unique') return hosts