File: __init__.py

package info (click to toggle)
python-consolekit 1.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,152 kB
  • sloc: python: 2,835; makefile: 8
file content (15 lines) | stat: -rw-r--r-- 209 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# this package
from consolekit import click_command, click_group

# this package
from . import submodule  # noqa: F401  # skipcq


@click_group()
def commando():
	pass


@click_command()
def command1():
	pass