Skip to content

Commit b98192c

Browse files
authored
🔀 Merge pull request #35 from davep/cody-tidy
General code tidying
2 parents e8fa8f4 + 5eb7fdb commit b98192c

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

src/peplum/app/providers/authors.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ def commands(self) -> CommandHits:
3434
"""
3535
if self.active_peps is None:
3636
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")
4041
)
4142
for author in self.active_peps.authors:
4243
yield CommandHit(

src/peplum/app/providers/python_versions.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,10 @@ def commands(self) -> CommandHits:
3434
"""
3535
if self.active_peps is None:
3636
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")
4039
if self.active_peps.is_filtered
41-
else "Relating to Python version"
40+
else ("Also relating to Python version", "Relating to Python version")
4241
)
4342
for version in sorted(self.active_peps.python_versions):
4443
if not version.version:

src/peplum/app/providers/statuses.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ def commands(self) -> CommandHits:
3434
"""
3535
if self.active_peps is None:
3636
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")
4041
)
4142
for status in self.active_peps.statuses:
4243
yield CommandHit(

src/peplum/app/providers/types.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,11 @@ def commands(self) -> CommandHits:
3434
"""
3535
if self.active_peps is None:
3636
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+
)
3942
for pep_type in self.active_peps.types:
4043
yield CommandHit(
4144
f"{command_prefix} {pep_type.type}",

0 commit comments

Comments
 (0)