Skip to content
#

teaching

Here are 1,454 public repositories matching this topic...

oppia
U8NWXD
U8NWXD commented Mar 7, 2022

Introduction

We would like to have a pylint check for indentation in Python code. This will likely require a custom lint check. Here are some of the cases we want to handle:

Indent By 4 Spaces

Good:

def func():
    pass
my_list = [
    'a',
    'b',
]

Bad:

def func():
  pass
my_list = ['a',
           '

Improve this page

Add a description, image, and links to the teaching topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the teaching topic, visit your repo's landing page and select "manage topics."

Learn more