Skip to content

Commit 176e358

Browse files
author
Radovan Fuchs
committed
fix
1 parent 3609d25 commit 176e358

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/e2e/proxy/interception_proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def reset_counters(self) -> None:
245245
self.intercepted_hosts.clear()
246246

247247

248-
class _InterceptionStatsHandler:
248+
class _InterceptionStatsHandler: # pylint: disable=too-few-public-methods
249249
"""Expose interception proxy counters over HTTP for in-cluster e2e assertions."""
250250

251251
def __init__(self, proxy: InterceptionProxy) -> None:

tests/e2e/proxy/tunnel_proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def reset_counters(self) -> None:
184184
self.last_connect_target = None
185185

186186

187-
class _StatsHandler:
187+
class _StatsHandler: # pylint: disable=too-few-public-methods
188188
"""Expose tunnel proxy counters over HTTP for in-cluster e2e assertions."""
189189

190190
def __init__(self, proxy: TunnelProxy) -> None:

0 commit comments

Comments
 (0)