From d379b32a3c1e8fe1f781de4504aec0d04e923d7e Mon Sep 17 00:00:00 2001 From: qqgg231 Date: Sun, 18 Oct 2020 23:11:59 +0200 Subject: [PATCH] change pass to 'raise NotImplementedError' better to raise error, so user will notice that it is not implemented and doesn't work --- src/ezgmail/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ezgmail/__init__.py b/src/ezgmail/__init__.py index cc0cd7c..84b6654 100644 --- a/src/ezgmail/__init__.py +++ b/src/ezgmail/__init__.py @@ -428,7 +428,7 @@ def replyAll(self, body, attachments=None, cc=None, bcc=None, mimeSubtype="plain # NOTE: Since the ``sender`` argument is ignored by Gmail anyway, I'm not including in this method the # way it is included in ``send()``. - pass + raise NotImplementedError # TODO - I need to remove EMAIL_ADDRESS from the first argument here: #send(self.sender + ', ' + self.recipient, self.subject, body, attachments=attachments, cc=cc, bcc=bcc, mimeSubtype=mimeSubtype, _threadId=self.threadId)