Skip to content

Commit

Permalink
fix: fatal error when using predefined answers
Browse files Browse the repository at this point in the history
  • Loading branch information
bramstroker committed Dec 1, 2024
1 parent c842851 commit fa6a5ef
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 fa6a5ef

Please sign in to comment.