Skip to content

Commit

Permalink
Comment updates and linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcclure committed May 3, 2023
1 parent 25662a6 commit 7bc46a9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion custom_components/chore_helper/chore.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""An entity for a single chore"""
"""An entity for a single chore."""
from __future__ import annotations

from datetime import date, datetime, time, timedelta
Expand Down
2 changes: 1 addition & 1 deletion custom_components/chore_helper/chore_blank.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Sensor platform for chore_helper."""
"""Entity for a manually-scheduled chore."""
from __future__ import annotations

from datetime import date
Expand Down
2 changes: 1 addition & 1 deletion custom_components/chore_helper/chore_daily.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Sensor platform for chore_helper."""
"""Entity for a daily chore."""
from __future__ import annotations

from datetime import date, timedelta
Expand Down
2 changes: 1 addition & 1 deletion custom_components/chore_helper/chore_monthly.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Sensor platform for chore_helper."""
"""Entity for a monthly chore."""
from __future__ import annotations

from calendar import monthrange
Expand Down
2 changes: 1 addition & 1 deletion custom_components/chore_helper/chore_weekly.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Sensor platform for chore_helper."""
"""Entity for a weekly chore."""
from __future__ import annotations

from datetime import date
Expand Down
2 changes: 1 addition & 1 deletion custom_components/chore_helper/chore_yearly.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Sensor platform for chore_helper."""
"""Entity for a yearly chore."""
from __future__ import annotations

from datetime import date, datetime
Expand Down

0 comments on commit 7bc46a9

Please sign in to comment.