Adhere to the project's established flake8 style guidelines as defined in setup.cfg. This includes: 1. Maintain line length limits of 80 characters for consistency and readability across all files.
Adhere to the project’s established flake8 style guidelines as defined in setup.cfg. This includes:
# Incorrect - exceeds 80 character line limit
def some_function(parameter1, parameter2, parameter3, parameter4, parameter5, parameter6, very_long_parameter):
return True
# Incorrect - missing blank lines between top-level elements
import boto3
def example_function():
pass
class ExampleClass:
pass
# Correct formatting
import boto3
def example_function():
pass
class ExampleClass:
pass
Remember that these style checks are enforced both in local development and by the CI “Lint” workflow. Following these conventions consistently improves code readability and prevents CI failures.
Enter the URL of a public GitHub repository