Pattern: Missing use of indented block
Issue: -
This issue occurs when code is not indented but should be.
def print_list(my_list):
"""This should be indented"""
print('Nope')
Indent the docstring by four spaces.
def print_list(my_list):
"""This should be indented"""
print('Nope')