Skip to content

Commit

Permalink
fix: linters
Browse files Browse the repository at this point in the history
  • Loading branch information
dvilelaf committed Jun 4, 2024
1 parent 6622fa4 commit 86f3aff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion operate/services/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import typing as t
from concurrent.futures import ThreadPoolExecutor
from pathlib import Path

import aiohttp
from aea.helpers.base import IPFSHash
from aea.helpers.logging import setup_logger
Expand Down Expand Up @@ -832,7 +833,9 @@ async def check_service_health(
async with session.get("http://localhost:8000/healthcheck") as resp:
status = resp.status
response_json = await resp.json()
return status == HTTP_OK and response_json.get("is_transitioning_fast", False)
return status == HTTP_OK and response_json.get(
"is_transitioning_fast", False
)

async def funding_job(
self,
Expand Down

0 comments on commit 86f3aff

Please sign in to comment.