File tree 4 files changed +16
-12
lines changed
4 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,10 @@ def commands(self) -> CommandHits:
34
34
"""
35
35
if self .active_peps is None :
36
36
return
37
- help_prefix = "Also filter" if self .active_peps .is_filtered else "Filter"
38
- command_prefix = (
39
- "Also authored by" if self .active_peps .is_filtered else "Authored by"
37
+ help_prefix , command_prefix = (
38
+ ("Also filter" , "Also authored by" )
39
+ if self .active_peps .is_filtered
40
+ else ("Filter" , "Authored by" )
40
41
)
41
42
for author in self .active_peps .authors :
42
43
yield CommandHit (
Original file line number Diff line number Diff line change @@ -34,11 +34,10 @@ def commands(self) -> CommandHits:
34
34
"""
35
35
if self .active_peps is None :
36
36
return
37
- help_prefix = "Also filter" if self .active_peps .is_filtered else "Filter"
38
- command_prefix = (
39
- "Also relating to Python version"
37
+ help_prefix , command_prefix = (
38
+ ("Also filter" , "Filter" )
40
39
if self .active_peps .is_filtered
41
- else " Relating to Python version"
40
+ else ( "Also relating to Python version" , " Relating to Python version")
42
41
)
43
42
for version in sorted (self .active_peps .python_versions ):
44
43
if not version .version :
Original file line number Diff line number Diff line change @@ -34,9 +34,10 @@ def commands(self) -> CommandHits:
34
34
"""
35
35
if self .active_peps is None :
36
36
return
37
- help_prefix = "Also filter" if self .active_peps .is_filtered else "Filter"
38
- command_prefix = (
39
- "Also with status" if self .active_peps .is_filtered else "With status"
37
+ help_prefix , command_prefix = (
38
+ ("Also filter" , "Filter" )
39
+ if self .active_peps .is_filtered
40
+ else ("Also with status" , "With status" )
40
41
)
41
42
for status in self .active_peps .statuses :
42
43
yield CommandHit (
Original file line number Diff line number Diff line change @@ -34,8 +34,11 @@ def commands(self) -> CommandHits:
34
34
"""
35
35
if self .active_peps is None :
36
36
return
37
- help_prefix = "Also filter" if self .active_peps .is_filtered else "Filter"
38
- command_prefix = "Also of type" if self .active_peps .is_filtered else "Of type"
37
+ help_prefix , command_prefix = (
38
+ ("Also filter" , "Filter" )
39
+ if self .active_peps .is_filtered
40
+ else ("Also of type" , "Of type" )
41
+ )
39
42
for pep_type in self .active_peps .types :
40
43
yield CommandHit (
41
44
f"{ command_prefix } { pep_type .type } " ,
You can’t perform that action at this time.
0 commit comments