From: Dmitry Shachnev <mitya57@debian.org>
Date: Sat, 10 Aug 2024 22:59:52 +0300
Subject: Remove backoff factor

This fixes terribly slow documentation build in a network-isolated
environment.
---
 PyFunceble/helpers/download.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/PyFunceble/helpers/download.py b/PyFunceble/helpers/download.py
index 2834d1a..55c21af 100644
--- a/PyFunceble/helpers/download.py
+++ b/PyFunceble/helpers/download.py
@@ -226,7 +226,7 @@ class DownloadHelper:
 
         session = requests.Session()
 
-        retries = Retry(total=self.retries, backoff_factor=3)
+        retries = Retry(total=self.retries)
         adapter = HTTPAdapter(max_retries=retries)
 
         session.mount("http://", adapter)
