File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class HoldDown:
44
44
@classmethod
45
45
def command_or_control_key (cls : Type [SelfHoldDown ]) -> SelfHoldDown :
46
46
"""
47
- A convenience method.
47
+ A convenience method for supporting multiple operating systems .
48
48
49
49
Figures out what operating system the Actor is using and directs the Actor
50
50
which execution key to hold down.
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class Release:
41
41
@classmethod
42
42
def command_or_control_key (cls : Type [SelfRelease ]) -> SelfRelease :
43
43
"""
44
- A convenience method.
44
+ A convenience method for supporting multiple operating systems .
45
45
46
46
Figures out what operating system the Actor is using and tells the Actor which
47
47
execution key to release.
Original file line number Diff line number Diff line change @@ -127,11 +127,11 @@ def __repr__(self: SelfTarget) -> str:
127
127
__str__ = __repr__
128
128
129
129
def __iter__ (self : SelfTarget ) -> Iterator [str ]:
130
- """Interator ."""
130
+ """Allow Targets to be treated as ``(By, str)`` tuples ."""
131
131
return self .get_locator ().__iter__ ()
132
132
133
133
def __getitem__ (self : SelfTarget , index : int ) -> str :
134
- """Allow slicing of target name directly ."""
134
+ """Allow Targets to be treated as ``(By, str)`` tuples ."""
135
135
return self .get_locator ()[index ]
136
136
137
137
def __init__ (
You can’t perform that action at this time.
0 commit comments