Skip to content

Commit db8ee16

Browse files
committed
chore(Session): Remove unused comment
1 parent af0c53a commit db8ee16

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

src/libtmux/session.py

-34
Original file line numberDiff line numberDiff line change
@@ -34,42 +34,8 @@
3434
logger = logging.getLogger(__name__)
3535

3636

37-
# Dataclasses define the schema in a typed annotation way.
38-
#
39-
# Users load through YAML, JSON, TOML, or any sort of data entry, these are parsed
40-
# into dataclasses. Bi-directionals.
41-
#
42-
# This means the "intermediary language" is actually a first class, typed, declarative
43-
# python syntax. It's so first class, it's used in tests, exposed as an experimental API
44-
# with full intention for users to bootstrap sessions fast.
45-
#
46-
# Pitfalls: Lock / pin your versions. APIs may change. It's a Public API - but
47-
# considered experimental in the sense we .
48-
#
49-
# The good news is, since it's typed, you will be able to refactor quickly. In fact,
50-
# it's easier to factor these than a config where there's no safety.
51-
#
52-
# Session.build_workspace(
53-
# windows=[
54-
# Window(
55-
# panes=[
56-
# panes=[]
57-
# ]
58-
#
59-
# )
60-
# ],
61-
# settings=WorkspaceBuilderSettings(
62-
# backend='libtmux.ext.workspace_builder.backends.default'
63-
# )
64-
# )
65-
# WorkspaceBuilder:
66-
# backend = 'libtmux.ext.workspace_builder.backends.default'
67-
#
68-
69-
7037
@dataclasses.dataclass()
7138
class Session(Obj, EnvironmentMixin):
72-
7339
"""
7440
A :term:`tmux(1)` :term:`Session` [session_manual]_.
7541

0 commit comments

Comments
 (0)