Skip to content

Commit e74434b

Browse files
committed
chore: fixes code formatting
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent e443fbd commit e74434b

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

lesson_03/quiz/quiz.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,10 @@ quiz:
3434
- $2y$10$FquR69q7W4E68TX/SNCB7u8Ri0DOFRDqsUPdGfuyIBjZJRVFkNI.6
3535
- $2y$10$FSWRA7hulVpyVxd8s67Nxuq/1cdmviW24qqoUbqihBf79cR.w9yly
3636
- $2y$10$Qy1IsNsfuJvA384ypL/72uWubUuNbMRp4LD6j/LM0RIH66D/HIjF6
37-
3837
niapack:
3938
- $2y$10$AHKmPPaTlafHO3T5q..kAuAhAy4n8Kn.wcY7ZAeYgokCjitwyjqE2
4039
- $2y$10$Z0g.9UO7qwkwoeNe8byn3.MVNIiIKBxa6ztLVHzDz.m5Ao5ozGqh6
4140
- $2y$10$QjpqUnI.C5UPmDuMPU.Eyu7k.T/qF0oAZDl0.osqlaJW.NC7Lvfya
42-
4341
jasonwatson:
4442
- $2y$10$AZtPKyQ.6Bzb.jreO/u.2O3C7XfvYAVpjHzLkuhLVdsX74wc4vXwS
4543
- $2y$10$QbKtEXqpeItigRLAHsn8Qe/06ZpXhKEP1bGPJSFXymsoFw9.04NHy

lesson_03/quiz/src/quizzes/nia_quiz.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class NiaPackquiz implements QuizQuestionProvider {
4040
'It is merging all changes directly into the main code and is important because it speeds up develpoment by avoiding unnecessary review or debugging steps',
4141
],
4242
]),
43-
AnswerChoice.UNANSWERED,
43+
AnswerChoice.B,
4444
); // Replace `UNANSWERED` with the correct answer.
4545
}
4646
private static makeQuestion1(): QuizQuestion {
@@ -53,7 +53,7 @@ export class NiaPackquiz implements QuizQuestionProvider {
5353
[AnswerChoice.C, 'Multiple languages like Python, JavaScript, and C++'],
5454
[AnswerChoice.D, 'C++'],
5555
]),
56-
AnswerChoice.UNANSWERED,
56+
AnswerChoice.C,
5757
); // Replace `UNANSWERED` with the correct answer.
5858
}
5959
private static makeQuestion2(): QuizQuestion {
@@ -69,7 +69,7 @@ export class NiaPackquiz implements QuizQuestionProvider {
6969
[AnswerChoice.C, 'A method for creating a local copy of a repository'],
7070
[AnswerChoice.D, 'A tool to schedule automatic repository backups'],
7171
]),
72-
AnswerChoice.UNANSWERED,
72+
AnswerChoice.A,
7373
); // Replace `UNANSWERED` with the correct answer.
7474
}
7575
}

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
33
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
4-
5-
6-
7-
8-
9-
import { NiaPackquiz } from './nia_quiz.js';
10-
11-
import { JasonWatsonQuiz } from './jason_watson_quiz.js';
12-
import { MeikoStephensQuiz } from './meiko_stephens_quiz.js';
134
import { DavidAdenaikeQuiz } from './david_adenaike_quiz.js';
145
import { EzraQuiz } from './ezra_quiz.js';
6+
import { JasonWatsonQuiz } from './jason_watson_quiz.js';
157
import { Jbeyquiz } from './jbeyquiz.js';
168
import { KhaylaSaundersQuiz } from './khayla_quiz.js';
9+
import { MeikoStephensQuiz } from './meiko_stephens_quiz.js';
1710
import { MercedesMathewsQuiz } from './mercedes_mathews_quiz.js';
11+
import { NiaPackquiz } from './nia_quiz.js';
1812

1913
import { RasheedMillerQuiz } from './rasheed_miller_quiz.js';
2014

0 commit comments

Comments
 (0)