Skip to content

Commit

Permalink
ci: disable pylint for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
eifinger committed Apr 16, 2021
1 parent 58e6f35 commit 9e17a92
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion custom_components/weenect/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):

@callback
def async_add_binary_sensors(
added: list[int], # pylint disable=unsubscriptable-object
added: list[int],
) -> None:
"""Add binary_sensors callback."""

Expand Down
2 changes: 1 addition & 1 deletion custom_components/weenect/device_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):

@callback
def async_add_device_trackers(
added: list[int], # pylint disable=unsubscriptable-object
added: list[int],
) -> None:
"""Add device_trackers callback."""

Expand Down
2 changes: 1 addition & 1 deletion custom_components/weenect/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):

@callback
def async_add_sensors(
added: list[int], # pylint disable=unsubscriptable-object
added: list[int],
) -> None:
"""Add sensors callback."""

Expand Down

0 comments on commit 9e17a92

Please sign in to comment.