From 213387603287ed2947fb392d070d212a80cfc02a Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Wed, 12 Aug 2020 21:46:23 +0200 Subject: [PATCH] Address pydocstyle offences in cheroot.connections --- cheroot/connections.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cheroot/connections.py b/cheroot/connections.py index 2389297da5..b416077c8c 100644 --- a/cheroot/connections.py +++ b/cheroot/connections.py @@ -96,7 +96,6 @@ def expire(self): This should be called periodically. """ - # find any connections still registered with the selector # that have not been active recently enough. threshold = time.time() - self.server.timeout @@ -274,7 +273,7 @@ def close(self): self._selector.close() @property - def _num_connections(self): + def _num_connections(self): # noqa: D401 """The current number of connections. Includes any in the readable list or registered with the selector,