From 2f888a89e0b370e7feaed8c8efd61da2b7f2a621 Mon Sep 17 00:00:00 2001 From: code-review-doctor Date: Thu, 3 Mar 2022 09:10:58 +0000 Subject: [PATCH] Fix issue avoid-missing-comma found at https://codereview.doctor --- start.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.py b/start.py index e960144..bed6020 100644 --- a/start.py +++ b/start.py @@ -405,8 +405,8 @@ class HttpFlood(Thread): @staticmethod def getMethodType(method: str) -> str: return "GET" if {method.upper()} & {"CFB", "CFBUAM", "GET", "COOKIE", "OVH", "EVEN", - "STRESS", "DYN", "SLOW", "PPS", "APACHE" - "BOT"} \ + "STRESS", "DYN", "SLOW", "PPS", "APACHE", + "BOT",} \ else "POST" if {method.upper()} & {"POST", "XMLRPC"} \ else "HEAD" if {method.upper()} & {"GSB", "HEAD"} \ else "REQUESTS"