Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jotonedev committed Oct 28, 2024
1 parent c06560c commit c488fcf
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pyown/items/gateway/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ async def get_time(self, *, message: EventMessage = None) -> datetime.time:
Requests the time of the gateway and bus.
Args:
message: The message to parse the time from. If not provided, send a request to the gateway.
message: The message to parse the time from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand Down Expand Up @@ -176,7 +176,7 @@ async def get_date(self, *, message: EventMessage = None) -> datetime.date:
Requests the date of the gateway and bus.
Args:
message: The message to parse the date from. If not provided, send a request to the gateway.
message: The message to parse the date from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand Down Expand Up @@ -221,7 +221,7 @@ async def get_ip(self, *, message: EventMessage = None) -> ipaddress.IPv4Address
Requests the IP address of the gateway.
Args:
message: The message to parse the IP address from. If not provided, send a request to the gateway.
message: The message to parse the IP address from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand All @@ -242,7 +242,7 @@ async def get_netmask(self, *, message: EventMessage = None) -> str:
Requests the net mask of the gateway.
Args:
message: The message to parse the net mask from. If not provided, send a request to the gateway.
message: The message to parse the net mask from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand All @@ -262,7 +262,7 @@ async def get_macaddress(self, *, message: EventMessage = None) -> str:
Requests the MAC address of the gateway.
Args:
message: The message to parse the MAC address from. If not provided, send a request to the gateway.
message: The message to parse the MAC address from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand Down Expand Up @@ -294,7 +294,7 @@ async def get_model(self, *, message: EventMessage = None) -> GatewayModel:
Requests the device type of the gateway.
Args:
message: The message to parse the device type from. If not provided, send a request to the gateway.
message: The message to parse the device type from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand All @@ -312,7 +312,7 @@ async def get_firmware(self, *, message: EventMessage = None) -> str:
Requests the firmware version of the gateway.
Args:
message: The message to parse the firmware version from. If not provided, send a request to the gateway.
message: The message to parse the firmware version from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand All @@ -334,7 +334,7 @@ async def get_uptime(self, *, message: EventMessage = None) -> datetime.timedelt
Requests the uptime of the gateway.
Args:
message: The message to parse the uptime from. If not provided, send a request to the gateway.
message: The message to parse the uptime from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand All @@ -358,7 +358,7 @@ async def get_datetime(self, *, message: EventMessage = None) -> datetime.dateti
Requests the date and time of the gateway.
Args:
message: The message to parse the date and time from. If not provided, send a request to the gateway.
message: The message to parse the date and time from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand Down Expand Up @@ -414,7 +414,7 @@ async def get_kernel_version(self, *, message: EventMessage = None) -> str:
Requests the linux kernel version of the gateway.
Args:
message: The message to parse the kernel version from. If not provided, send a request to the gateway.
message: The message to parse the kernel version from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand All @@ -436,7 +436,7 @@ async def get_distribution_version(self, *, message: EventMessage = None) -> str
Requests the os distribution version of the gateway.
Args:
message: The message to parse the distribution version from. If not provided, send a request to the gateway.
message: The message to parse the distribution version from. If not provided, it will send a request to the server.
It's used by call_callbacks to parse the message.
Returns:
Expand Down

0 comments on commit c488fcf

Please sign in to comment.