Skip to content

Commit

Permalink
fix: linters
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed May 8, 2024
1 parent 2adbac7 commit 6551989
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions operate/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ async def _create_services(request: Request) -> JSONResponse:
if len(manager.json) > 0:
old_hash = manager.json[0]["hash"]
if old_hash == template["hash"]:
logger.info("Loading service " + template["hash"])
logger.info(f'Loading service {template["hash"]}')
service = manager.create_or_load(
hash=template["hash"],
rpc=template["configuration"]["rpc"],
Expand All @@ -400,7 +400,7 @@ async def _create_services(request: Request) -> JSONResponse:
)
update = True
else:
logger.info("Creating service " + template["hash"])
logger.info(f'Creating service {template["hash"]}')
service = manager.create_or_load(
hash=template["hash"],
rpc=template["configuration"]["rpc"],
Expand Down
9 changes: 3 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -174,27 +174,21 @@ ignore_missing_imports = True
[mypy-aea_ledger_ethereum.*]
ignore_missing_imports = True


[mypy-dotenv.*]
ignore_missing_imports = True


[mypy-autonomy.*]
ignore_missing_imports = True


[mypy-hexbytes.*]
ignore_missing_imports = True


[mypy-starlette.*]
ignore_missing_imports = True


[mypy-aea_cli_ipfs.*]
ignore_missing_imports = True


[mypy-clea.*]
ignore_missing_imports = True

Expand All @@ -209,3 +203,6 @@ ignore_missing_imports = True

[mypy-docker.*]
ignore_missing_imports = True

[mypy-compose.*]
ignore_missing_imports = True

0 comments on commit 6551989

Please sign in to comment.