We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c520cee commit fd452d2Copy full SHA for fd452d2
in2lambda/api/module.py
@@ -113,9 +113,9 @@ def to_json(self, output_dir: str) -> None:
113
... # Check the contents of the directory
114
... sorted(os.listdir(temp_dir))
115
... # Check the title of the first question
116
- ... with open(f"{temp_dir}/Question 1/Question 1.json") as file:
+ ... with open(f"{temp_dir}/question_1/question_1.json") as file:
117
... print(f"Question 1's title: {json.load(file)['title']}")
118
- ['Question 1', 'Question 1.zip', 'Question 2', 'Question 2.zip']
+ ['Question 1', 'question_1.zip', 'Question 2', 'question_2.zip']
119
Question 1's title: Question 1
120
121
"""
0 commit comments