Skip to content

Commit a9bfbbd

Browse files
committed
coms: Add two TODOs as reminders about classes in exam/questions/question_one.py.
1 parent c404c9c commit a9bfbbd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

exam/questions/question_one.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
# You must reorganize and/or add the imports so that they adhere
99
# to the industry best practices for Python source code.
1010

11+
# TODO: Do not modify the implementation or CoverageItem class
12+
13+
# TODO: Do not modify the implementation or Mutant class
14+
1115
import random
1216
from typing import List
1317

@@ -122,7 +126,7 @@ def compute_coverage_difference(
122126

123127

124128
def generate_fuzzer_values(
125-
max_length = 100, char_start: int = 32, char_range: int = 32
129+
max_length=100, char_start: int = 32, char_range: int = 32
126130
) -> str:
127131
"""Make string of up to max_length characters in the range [char_start, char_start + char_range)."""
128132
string_length = random.randrange(max_length, max_length + 1)

0 commit comments

Comments
 (0)