Skip to content

Commit

Permalink
Update python version
Browse files Browse the repository at this point in the history
  • Loading branch information
robbinjanssen committed Dec 18, 2024
1 parent b660afb commit fb2b2c7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion custom_components/ojmicroline_thermostat/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import asyncio
import logging
from collections.abc import Mapping
from collections.abc import Mapping # pylint: disable=import-error
from typing import Any, ClassVar

from homeassistant.components.climate import (
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ojmicroline_thermostat/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from collections.abc import Callable
from collections.abc import Callable # pylint: disable=import-error
from dataclasses import dataclass
from typing import TYPE_CHECKING, Any

Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ ignored-modules = [
target-version = "py311"
lint.select = ["ALL"]
lint.ignore = [
"ANN101", # Self... explanatory
"ANN102", # cls... just as useless
"ANN401", # Opinioated warning on disallowing dynamically typed expressions
"D203", # Conflicts with other rules
"D213", # Conflicts with other rules
Expand Down

0 comments on commit fb2b2c7

Please sign in to comment.