Skip to content

Commit cfafabd

Browse files
committed
tests(plugins[tmuxp_test_plugin_bwb]): Note pydocstyle updates
1 parent efbdc46 commit cfafabd

File tree

1 file changed

+4
-0
lines changed
  • tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_bwb/tmuxp_test_plugin_bwb

1 file changed

+4
-0
lines changed

tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_bwb/tmuxp_test_plugin_bwb/plugin.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Tmuxp example plugin for before_worksplace_builder."""
12
import typing as t
23

34
from tmuxp.plugin import TmuxpPlugin
@@ -7,8 +8,11 @@
78

89

910
class PluginBeforeWorkspaceBuilder(TmuxpPlugin):
11+
"""Tmuxp plugin that runs before worksplace builder starts."""
12+
1013
def __init__(self) -> None:
1114
self.message: str = "[+] This is the Tmuxp Test Plugin"
1215

1316
def before_workspace_builder(self, session: "Session") -> None:
17+
"""Run hook before workspace builder begins."""
1418
session.rename_session("plugin_test_bwb")

0 commit comments

Comments
 (0)