We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cf8124 commit 136d181Copy full SHA for 136d181
2 files changed
template/{{cookiecutter.project_name}}/bk_plugin/meta.py
@@ -1 +1 @@
1
-description = "{{cookiecutter.plugin_desc}}" # noqa
+description = "{{cookiecutter.plugin_desc}}" # pylint: disable=invalid-name
template/{{cookiecutter.project_name}}/bk_plugin/versions/v1_0_0.py
@@ -1,13 +1,12 @@
import logging
2
3
-from bk_plugin_framework.kit import ( # noqa
+from bk_plugin_framework.kit import (
4
Plugin,
5
InputsModel,
6
OutputsModel,
7
Field,
8
ContextRequire,
9
Context,
10
- State,
11
)
12
13
logger = logging.getLogger("bk_plugin")
0 commit comments