Skip to content
Snippets Groups Projects
Commit 141e1210 authored by Remco Tukker's avatar Remco Tukker
Browse files

fix typing error

parent c19b077a
No related branches found
No related tags found
1 merge request!49Feature/comp 219 save button
......@@ -74,7 +74,8 @@ def open_survey(nren_name) -> Any:
verification_status = response.answers["verification_status"]
elif previous_response:
# TODO add a 'migration' hook here for updating data per year
data = previous_response.answers["data"]
previous_response_data: dict = previous_response.answers["data"]
data = previous_response_data
verification_status = {question_name: VerificationStatus.Unverified for question_name in data.keys()}
open_survey: dict = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment