Skip to content

Commit

Permalink
add typing_extensions (py39) (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mausy5043 authored Jan 1, 2025
2 parents a695be5 + dababa1 commit 819e54d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ dependencies:
- pylint
- pipdeptree
- pre-commit
- typing-extensions
4 changes: 3 additions & 1 deletion pylywsdxx/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
import time

# from threading import Timer
from typing import Any, Self
from typing import Any

from typing_extensions import Self

# isort: off
from .device import Lywsd02
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "hatchling.build"
[project]
name = "pylywsdxx"
description = "A Python3 class to interrogate Xiaomi Mijia LYWSD* sensors."
version = "2.6.1" # latest/current distribution version
version = "2.6.2" # latest/current distribution version
# version = "2.5.1" # latest test version
dependencies = [
"bluepy3==2.18.1",
Expand Down

0 comments on commit 819e54d

Please sign in to comment.