问题 Should I not put the return from this method below in finally ? Pylint gives error for this saying: 3: return statement in finally block may swallow exception (lost-exception) def sendMessage(self, subject, msgContent, files, mailto): """ Send the email message Args: subject(string): subject for the email msgContent(string): email message Content files(List): list of files to be attached mailto(string): email address to be sent to """ msg = self.prepareMail(subject, msgContent, files, mailto)