Quality Report: pylint
Diff: origin/main...HEAD, staged and unstaged changes
1 2 3 4 5 6
def func_1(apple, my_list): if apple<10: # Do something my_list.append(apple) return my_list[1:] def func_2(spongebob, squarepants):
7 8 9 10 11 12
"""A less messy function""" for char in spongebob: if char in squarepants: return char unused=1 return None