Diff Quality

Quality Report: pyflakes

Diff: origin/main...HEAD, staged and unstaged changes

Source File Diff Quality (%) Lines in violation
violations_test_file.py 88.9%
  • 11: local variable 'unused' is assigned to but never used
violations_test_file.py
 7
 8
 9
10
11
12
    """A less messy function"""
    for char in spongebob:
        if char in squarepants:
            return char
    unused=1
    return None