mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
fix plugin create in cli.py
This commit is contained in:
parent
1b85eefad2
commit
cbce63eab3
2 changed files with 3 additions and 3 deletions
|
@ -1,3 +1,3 @@
|
|||
__version__ = "4.0.5.a11"
|
||||
__version__ = "4.0.5.a12"
|
||||
__codename__ = "Spring Break"
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ import importlib
|
|||
from importlib_metadata import metadata
|
||||
from tabulate import tabulate
|
||||
from PyInquirer import prompt, print_json
|
||||
|
||||
import platform
|
||||
|
||||
class CraftBeerPiCli():
|
||||
def __init__(self, config) -> None:
|
||||
|
@ -263,7 +263,7 @@ def plugins(context):
|
|||
'''List active plugins'''
|
||||
context.obj.plugins_list()
|
||||
|
||||
@click.command()
|
||||
@main.command()
|
||||
@click.pass_context
|
||||
def create(context):
|
||||
'''Create New Plugin'''
|
||||
|
|
Loading…
Reference in a new issue