Skip to content

Commit

Permalink
Merge pull request #2741 from bramstroker/fix/measure-answers
Browse files Browse the repository at this point in the history
fix fatal error when using predefined answers
  • Loading branch information
bramstroker authored Dec 1, 2024
2 parents c842851 + fa6a5ef commit 616664f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/measure/measure/measure.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def ask_questions(self, questions: list[Question]) -> dict[str, Any]:
"""

# Only ask questions which answers are not predefined in .env file
questions_to_ask = [question for question in questions if not config_key_exists(str(question.name).upper())]
questions_to_ask = list(questions)

predefined_answers = {}
for question in questions:
Expand Down

0 comments on commit 616664f

Please sign in to comment.