File: aaa_hello_plugin.py

package info (click to toggle)
python-cliapp 1.20180812.1-4
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 392 kB
  • sloc: python: 3,172; makefile: 5; sh: 5
file content (10 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
import cliapp

class Hello(cliapp.Plugin):

    def __init__(self, foo, bar=None):
        self.foo = foo
        self.bar = bar

    def enable(self):
        pass