Skip to content

Commit

Permalink
feat: 优化插件模板
Browse files Browse the repository at this point in the history
  • Loading branch information
normal-wls committed Jun 3, 2024
1 parent 0cf8124 commit 136d181
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion template/{{cookiecutter.project_name}}/bk_plugin/meta.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
description = "{{cookiecutter.plugin_desc}}" # noqa
description = "{{cookiecutter.plugin_desc}}" # pylint: disable=invalid-name
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import logging

from bk_plugin_framework.kit import ( # noqa
from bk_plugin_framework.kit import (
Plugin,
InputsModel,
OutputsModel,
Field,
ContextRequire,
Context,
State,
)

logger = logging.getLogger("bk_plugin")
Expand Down

0 comments on commit 136d181

Please sign in to comment.