Skip to content

Commit

Permalink
Add isort to CI (#3615)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Apr 12, 2024
1 parent 5901158 commit 7ea4278
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- requirements-txt-fixer
- check-ast
- mixed-line-ending
- isort
steps:
- name: 📥 Checkout the repository
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hacs/repositories/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import annotations

from asyncio import sleep
from datetime import datetime, UTC
from datetime import UTC, datetime
import os
import pathlib
import shutil
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hacs/utils/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import annotations

import asyncio
from datetime import datetime, UTC
from datetime import UTC, datetime
from typing import Any

from homeassistant.core import callback
Expand Down
1 change: 0 additions & 1 deletion tests/test_system_health.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from tests.common import MockedResponse, ResponseMocker, safe_json_dumps
from tests.conftest import SnapshotFixture


HACS_SYSTEM_HEALTH_DOMAIN = "Home Assistant Community Store"


Expand Down

0 comments on commit 7ea4278

Please sign in to comment.