Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ ignore = [
"ERA001", # Commented out code is allowed for examples
"T201", # Prints are allowed in examples
"PLR0913",
"FBT001", # Boolean positional args are part of the existing public API
"FBT002",
"N999",
]
Expand Down
2 changes: 2 additions & 0 deletions growattServer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env python3
"""growattServer package exports."""

from __future__ import annotations

from .base_api import GrowattApi, Timespan, hash_password
from .exceptions import (
GrowattError,
Expand Down
Loading
Loading