in fxa/core.py [0:0]
def resend_email_code(self, **kwds):
body = {}
for extra in kwds:
if extra in ("service", "redirectTo", "resume"):
body[extra] = kwds[extra]
else:
msg = f"Unexpected keyword argument: {extra}"
raise TypeError(msg)
url = "/recovery_email/resend_code"
self.apiclient.post(url, body, auth=self._auth)