Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>tags/1.9.1
| @@ -94,7 +94,7 @@ def register_external_error_handlers(api: Api): | |||
| got_request_exception.send(current_app, exception=e) | |||
| status_code = 500 | |||
| data = getattr(e, "data", {"message": http_status_message(status_code)}) | |||
| data: dict[str, Any] = getattr(e, "data", {"message": http_status_message(status_code)}) | |||
| # 🔒 Normalize non-mapping data (e.g., if someone set e.data = Response) | |||
| if not isinstance(data, dict): | |||
| @@ -27,7 +27,7 @@ import gmpy2 # type: ignore | |||
| from Crypto import Random | |||
| from Crypto.Signature.pss import MGF1 | |||
| from Crypto.Util.number import bytes_to_long, ceil_div, long_to_bytes | |||
| from Crypto.Util.py3compat import _copy_bytes, bord | |||
| from Crypto.Util.py3compat import bord | |||
| from Crypto.Util.strxor import strxor | |||
| @@ -72,7 +72,7 @@ class PKCS1OAepCipher: | |||
| else: | |||
| self._mgf = lambda x, y: MGF1(x, y, self._hashObj) | |||
| self._label = _copy_bytes(None, None, label) | |||
| self._label = bytes(label) | |||
| self._randfunc = randfunc | |||
| def can_encrypt(self): | |||
| @@ -120,7 +120,7 @@ class PKCS1OAepCipher: | |||
| # Step 2b | |||
| ps = b"\x00" * ps_len | |||
| # Step 2c | |||
| db = lHash + ps + b"\x01" + _copy_bytes(None, None, message) | |||
| db = lHash + ps + b"\x01" + bytes(message) | |||
| # Step 2d | |||
| ros = self._randfunc(hLen) | |||
| # Step 2e | |||
| @@ -14,7 +14,7 @@ class SendGridClient: | |||
| def send(self, mail: dict): | |||
| logger.debug("Sending email with SendGrid") | |||
| _to = "" | |||
| try: | |||
| _to = mail["to"] | |||
| @@ -28,7 +28,7 @@ class SendGridClient: | |||
| content = Content("text/html", mail["html"]) | |||
| sg_mail = Mail(from_email, to_email, subject, content) | |||
| mail_json = sg_mail.get() | |||
| response = sg.client.mail.send.post(request_body=mail_json) # ty: ignore [call-non-callable] | |||
| response = sg.client.mail.send.post(request_body=mail_json) # type: ignore | |||
| logger.debug(response.status_code) | |||
| logger.debug(response.body) | |||
| logger.debug(response.headers) | |||
| @@ -6,7 +6,6 @@ | |||
| "migrations/", | |||
| "core/rag", | |||
| "extensions", | |||
| "libs", | |||
| "controllers/console/datasets", | |||
| "core/ops", | |||
| "core/model_runtime", | |||