Metadata

ID: python-design/function-too-long

Language: Python

Severity: Warning

Category: Best Practices

Description

Function should be short to be easy to understand and maintain. Functions more of 100 lines trigger a warning and should be refactored into smaller units of code.

Non-Compliant Code Examples

def myfunc():  # function is too long




































































































  pass

Compliant Code Examples

def myfunc():
  pass