From db8d5c44546214ea9c75176f27e2869903a78fc9 Mon Sep 17 00:00:00 2001 From: 0880 <98263509+0880880@users.noreply.github.com> Date: Tue, 20 Jan 2026 21:01:24 +0330 Subject: [PATCH] Use set for CORS variables --- slow/slow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slow/slow.py b/slow/slow.py index ba32f95..cc7e11f 100644 --- a/slow/slow.py +++ b/slow/slow.py @@ -11,8 +11,8 @@ PR = re.compile(r"\<([a-zA-Z_][a-zA-Z0-9_]*)\>") class CORS: - Origins: list[str] - Methods: list[str] + Origins: set[str] + Methods: set[str] Disabled: bool def __init__(self):