From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Fri, 7 Nov 2025 14:07:12 +0000 (-0500) Subject: chore: Remove unused variable `r` X-Git-Tag: rec-5.4.0-alpha1~115^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c16a698146498ddf1132686db83400e513e4e0c;p=thirdparty%2Fpdns.git chore: Remove unused variable `r` Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/regression-tests.recursor-dnssec/test_API.py b/regression-tests.recursor-dnssec/test_API.py index d9714b0af2..310338f2d4 100644 --- a/regression-tests.recursor-dnssec/test_API.py +++ b/regression-tests.recursor-dnssec/test_API.py @@ -49,7 +49,7 @@ api-key=%s headers = {'x-api-key': self._apiKey} url = 'http://127.0.0.1:' + str(self._wsPort) + '/api/v1/servers/localhost/statistics' try: - r = requests.get(url, headers=headers, timeout=self._wsTimeout) + requests.get(url, headers=headers, timeout=self._wsTimeout) self.assertTrue(False) except requests.exceptions.ConnectionError as exp: pass