Skip to content
#

tutorials

Here are 2,303 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',
           '
QuantumKatas
tcNickolas
tcNickolas commented Oct 1, 2019

Several katas could have better error messaging:

  • Superposition : the test harness could log the actual state of the system after prep vs the expected state before asserting that they are the same (the change would add state prep and logging using DumpMachine to AssertEqualOnZeroState)
  • BasicGates : a similar improvement, but a bit more extra code to write a unified test wrapper
help wanted good first issue

A complete guide to start and improve in machine learning (ML), artificial intelligence (AI) in 2022 without ANY background in the field and stay up-to-date with the latest news and state-of-the-art techniques!

  • Updated Apr 7, 2022

Improve this page

Add a description, image, and links to the tutorials 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 tutorials topic, visit your repo's landing page and select "manage topics."

Learn more