Skip to content

Commit 54e7380

Browse files
committed
remove comments in container.py
1 parent e1835c2 commit 54e7380

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

eventsourcingdb/container.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@ def _wait_for_http(self, path: str, timeout: int) -> None:
204204
raise TimeoutError(f'Service failed to become ready within {timeout} seconds')
205205

206206
def _check_endpoint_available(self, url: str) -> bool:
207-
"""Check if an HTTP endpoint is available."""
208207
try:
209208
response = requests.get(url, timeout=2)
210209
except requests.RequestException:
@@ -213,7 +212,6 @@ def _check_endpoint_available(self, url: str) -> bool:
213212

214213
# pylint: disable=R6301
215214
def _check_response_ok(self, response) -> bool:
216-
"""Check if the HTTP response indicates success."""
217215
return response is not None and response.status_code == HTTPStatus.OK
218216

219217
def with_api_token(self, token: str) -> 'Container':

0 commit comments

Comments
 (0)