Remove duplicate attribute initialization in SimpleAiohttpChecker.__init__ (#2513)

self.allow_redirects and self.timeout were each initialized twice in
SimpleAiohttpChecker.__init__, which is redundant code.

Co-authored-by: zocomputer <help@zocomputer.com>
This commit is contained in:
Michael Sargis
2026-04-11 04:35:56 -04:00
committed by GitHub
parent 7a31328325
commit 28cb6c9ffb
-2
View File
@@ -61,8 +61,6 @@ class SimpleAiohttpChecker(CheckerBase):
self.headers = None
self.allow_redirects = True
self.timeout = 0
self.allow_redirects = True
self.timeout = 0
self.method = 'get'
self.payload = None