This commit is contained in:
zandercymatics 2024-11-04 08:47:05 -07:00
parent 4ae764bf0b
commit 8660e6ba89
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 4 additions and 6 deletions

View file

@ -158,7 +158,6 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
# Configure titles, wizard_conditions, unlocking_steps, and steps
self.configure_step_options()
self._domain_request = None # for caching
self.domain_request_id = None
def configure_step_options(self):
"""Changes which steps are available to the user based on self.is_portfolio.
@ -183,7 +182,6 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
def has_pk(self):
"""Does this wizard know about a DomainRequest database record?"""
return self.kwargs.get("id") is not None
def get_step_enum(self):