Skip to content

Commit 454d29e

Browse files
Merge pull request #545 from WillCodeForCats/dependabot/github_actions/WillCodeForCats/python-lint-action-1.0.3
Bump WillCodeForCats/python-lint-action from 1.0.2 to 1.0.3
2 parents 97fc92e + 461d9c8 commit 454d29e

File tree

9 files changed

+9
-1
lines changed

9 files changed

+9
-1
lines changed

.github/workflows/python-quality.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
- uses: WillCodeForCats/[email protected].2
15+
- uses: WillCodeForCats/[email protected].3
1616
with:
1717
python-root-list: "custom_components/solaredge_modbus_multi"
1818
use-flake8: true

custom_components/solaredge_modbus_multi/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The SolarEdge Modbus Multi Integration."""
2+
23
from __future__ import annotations
34

45
import asyncio

custom_components/solaredge_modbus_multi/binary_sensor.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Component to interface with binary sensors."""
2+
23
from __future__ import annotations
34

45
import logging

custom_components/solaredge_modbus_multi/button.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Component to interface with binary sensors."""
2+
23
from __future__ import annotations
34

45
import logging

custom_components/solaredge_modbus_multi/config_flow.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Config flow for the SolarEdge Modbus Multi integration."""
2+
23
from __future__ import annotations
34

45
import homeassistant.helpers.config_validation as cv

custom_components/solaredge_modbus_multi/const.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Constants used by SolarEdge Modbus Multi components."""
2+
23
from __future__ import annotations
34

45
import re

custom_components/solaredge_modbus_multi/diagnostics.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Diagnostics support for SolarEdge Modbus Multi Device."""
2+
23
from __future__ import annotations
34

45
from typing import Any

custom_components/solaredge_modbus_multi/repairs.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Repairs for SolarEdge Modbus Multi Device."""
2+
23
from __future__ import annotations
34

45
from typing import cast

custom_components/solaredge_modbus_multi/switch.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Switch platform for SolarEdge Modbus Multi."""
2+
23
from __future__ import annotations
34

45
import logging

0 commit comments

Comments
 (0)