We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 973f708 commit 245e90cCopy full SHA for 245e90c
ignoring_somethings/verify.py
@@ -26,7 +26,7 @@ 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 = [line for line in gitignore_file.readlines() if line.strip() != ""]
30
31
comments: List[str] = []
32
print(lines)
0 commit comments