Skip to content

Commit

Permalink
refactor: use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
d-Rickyy-b committed Mar 23, 2021
1 parent 634bd9b commit 5a27ea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyBrematic/gateways/tests/brennenstuhl_gateway_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ def test_send_request(self, socket_class_mock):
socket_instance_mock.sendto.assert_called_once_with("Test Payload", (self.ip, self.port))


if __name__ == '__main__':
if __name__ == "__main__":
unittest.main()
2 changes: 1 addition & 1 deletion pyBrematic/gateways/tests/connair_gateway_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,5 @@ def test_send_request(self, socket_class_mock):
socket_instance_mock.sendto.assert_called_once_with("Test Payload", (self.ip, self.port))


if __name__ == '__main__':
if __name__ == "__main__":
unittest.main()

0 comments on commit 5a27ea1

Please sign in to comment.