forms: Fix type of domain_override parameter.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2022-04-26 20:07:54 -07:00 committed by Tim Abbott
parent ee0021de08
commit af30538a65
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ def generate_password_reset_url(
class ZulipPasswordResetForm(PasswordResetForm):
def save(
self,
domain_override: Optional[bool] = None,
domain_override: Optional[str] = None,
subject_template_name: str = "registration/password_reset_subject.txt",
email_template_name: str = "registration/password_reset_email.html",
use_https: bool = False,