Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DewGew authored Apr 22, 2023
1 parent 71adc50 commit 7abc28a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smarthome.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ def syncDevices_post(self, s):
raise SmartHomeError(ERR_PROTOCOL_ERROR, 'not authorized access!!')

r = self.forceDevicesSync()
s.send_message(200, 'Synchronization request sent, status_code: ' + st
s.send_message(200, 'Synchronization request sent, status_code: ' + st(r))

This comment has been minimized.

Copy link
@kofec

kofec May 10, 2023

Contributor

stil typo st(r) -> str(r)


def notification_post(self, s):
logger.debug(s.headers)
Expand Down

1 comment on commit 7abc28a

@kofec
Copy link
Contributor

@kofec kofec commented on 7abc28a May 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

stil typo st(r) -> str(r)

Please sign in to comment.