We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 245e90c commit a54b965Copy full SHA for a54b965
ignoring_somethings/verify.py
@@ -26,7 +26,9 @@ def verify(repo: GitAutograderRepo) -> GitAutograderOutput:
26
27
# Read the file and parse it
28
with open(".gitignore", "r") as gitignore_file:
29
- lines = [line for line in gitignore_file.readlines() if line.strip() != ""]
+ lines = [
30
+ line.strip() for line in gitignore_file.readlines() if line.strip() != ""
31
+ ]
32
33
comments: List[str] = []
34
print(lines)
0 commit comments