Skip to content

Commit ce9bdc6

Browse files
committed
Remove unused i variable
1 parent c940e67 commit ce9bdc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airflow/modules/proxypool/proxypool_validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, url, timeout=10, checks=3, sleep_interval=0.1):
2121

2222
def validate_proxy(self, proxy_record):
2323
consecutive_checks = []
24-
for i in range(self.checks):
24+
for _ in range(self.checks):
2525
content = self.parser.get_content(
2626
timeout=self.timeout,
2727
proxies=proxy_record.proxy

0 commit comments

Comments
 (0)