Skip to content

Commit

Permalink
🔀 Merge pull request #122 from davep/pointless-tweak
Browse files Browse the repository at this point in the history
Code tidy
  • Loading branch information
davep authored Jan 25, 2025
2 parents 65192f7 + cdb533f commit 59583c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/braindrop/app/commands/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def key_binding(cls) -> str:
if isinstance(key := cls.BINDING_KEY, tuple):
key, *_ = key
if isinstance(key, str):
key, _, _ = cls.binding().key.partition(",")
key, *_ = cls.binding().key.partition(",")
return (key or "").strip()

@classmethod
Expand Down

0 comments on commit 59583c2

Please sign in to comment.