1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
"""Our first example plugin.""" class ExampleOne: """First Example Plugin.""" name = "on-by-default-example-plugin" version = "1.0.0" def __init__(self, tree): self.tree = tree def run(self): """Do nothing.""" yield from []