fix: use more accurate naming for proxy rotation strategy

It can be considered the simplest form of round robin since we don't have weights or anything (as was originally planned), but let's change it to avoid confusion or useless debates. Here goes nothing
This commit is contained in:
Karim shoair
2026-02-14 23:19:54 +02:00
parent c94ebd2fa9
commit 0ab54852c4
3 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -1,3 +1,3 @@
from .proxy_rotation import ProxyRotator, is_proxy_error, round_robin
from .proxy_rotation import ProxyRotator, is_proxy_error, cyclic_rotation
__all__ = ["ProxyRotator", "is_proxy_error", "round_robin"]
__all__ = ["ProxyRotator", "is_proxy_error", "cyclic_rotation"]