Skip to content

Commit 001f1d3

Browse files
committed
Fix hydroponic typo, capitalize project links
1 parent d1848a5 commit 001f1d3

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# python-letpot
22

3-
Asynchronous Python client for interacting with LetPot hydrophonic gardens via the manufacturer's cloud. You can listen for status updates (push) and change device settings.
3+
Asynchronous Python client for interacting with LetPot hydroponic gardens via the manufacturer's cloud. You can listen for status updates (push) and change device settings.
44

55
The following models should be supported, although only LPH-AIR is tested:
66

letpot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"""Python client for LetPot hydrophonic gardens."""
1+
"""Python client for LetPot hydroponic gardens."""

letpot/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Python client for LetPot hydrophonic gardens."""
1+
"""Python client for LetPot hydroponic gardens."""
22

33
import time
44
from aiohttp import ClientSession, ClientResponse

letpot/converters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Python client for LetPot hydrophonic gardens."""
1+
"""Python client for LetPot hydroponic gardens."""
22

33
from abc import ABC, abstractmethod
44
from datetime import time

letpot/deviceclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Python client for LetPot hydrophonic gardens."""
1+
"""Python client for LetPot hydroponic gardens."""
22

33
import asyncio
44
import dataclasses

letpot/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Exceptions for Python client for LetPot hydrophonic gardens."""
1+
"""Exceptions for Python client for LetPot hydroponic gardens."""
22

33

44
class LetPotException(Exception):

letpot/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Models for Python client for LetPot hydrophonic gardens."""
1+
"""Models for Python client for LetPot hydroponic gardens."""
22

33
from dataclasses import dataclass
44
from datetime import time

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "letpot"
33
version = "0.1.0"
4-
description = "Asynchronous Python client for LetPot hydrophonic gardens."
4+
description = "Asynchronous Python client for LetPot hydroponic gardens."
55
authors = ["Joris Pelgröm <[email protected]>"]
66
license = "MIT"
77
readme = "README.md"
@@ -27,8 +27,8 @@ pytest-cov = "6.0.0"
2727
mypy = "1.14.1"
2828

2929
[tool.poetry.urls]
30-
changelog = "https://github.com/jpelgrom/python-letpot/releases"
31-
issues = "https://github.com/jpelgrom/python-letpot/issues"
30+
Changelog = "https://github.com/jpelgrom/python-letpot/releases"
31+
Issues = "https://github.com/jpelgrom/python-letpot/issues"
3232

3333
[build-system]
3434
requires = ["poetry-core"]

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"""Test for Python client for LetPot hydrophonic gardens."""
1+
"""Tests for Python client for LetPot hydroponic gardens."""

0 commit comments

Comments
 (0)