Skip to content

Commit

Permalink
Fix docstrings (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare authored Oct 12, 2020
1 parent 9819732 commit 43705bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydroid_ipcam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(
timeout: int = 10,
ssl: bool = True,
):
"""Initialize the data oject."""
"""Initialize the data object."""
self.websession: aiohttp.ClientSession = websession
self.status_data = None
self.sensor_data = None
Expand Down Expand Up @@ -102,7 +102,7 @@ async def update(self) -> None:

@property
def current_settings(self) -> Dict[str, Any]:
"""Return dict with all config include."""
"""Return dict with all config included."""
settings = {}
if not self.status_data:
return settings
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Set up pydroid_ipcam package."""
from setuptools import setup, find_packages


Expand Down

0 comments on commit 43705bb

Please sign in to comment.