code review feedback

This commit is contained in:
Kenneth Kehl
2023-05-05 08:09:15 -07:00
parent 70b58f50ac
commit b59e4df06d
5 changed files with 27 additions and 43 deletions

View File

@@ -1,25 +0,0 @@
from app.clients import Client, ClientException
class CloudwatchClientResponseException(ClientException):
"""
Base Exception for SmsClientsResponses
"""
def __init__(self, message):
self.message = message
def __str__(self):
return "Message {}".format(self.message)
class CloudwatchClient(Client):
"""
Base Cloudwatch client for checking sms.
"""
def init_app(self, *args, **kwargs):
raise NotImplementedError("TODO Need to implement.")
def check_sms(self, *args, **kwargs):
raise NotImplementedError("TODO Need to implement.")