diff options
author | Piotr Miller <nwg.piotr@gmail.com> | 2021-11-25 11:58:56 +0100 |
---|---|---|
committer | Piotr Miller <nwg.piotr@gmail.com> | 2021-11-25 11:58:56 +0100 |
commit | 89e5cf26e1d95ef530413302dd60868d2b5b3b99 (patch) | |
tree | ffa6ffb698b2b9355c064c6755d6d1bd151858d4 | |
parent | ea3caa81818e06ac88712443571fc79a5080e39a (diff) | |
download | autotiling-89e5cf26e1d95ef530413302dd60868d2b5b3b99.tar.gz |
help format corrected
-rw-r--r-- | autotiling/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autotiling/main.py b/autotiling/main.py index b7cc75e..1780884 100644 --- a/autotiling/main.py +++ b/autotiling/main.py @@ -98,7 +98,7 @@ def main(): help="display version information", ) parser.add_argument("-w", "--workspaces", - help="restricts autotiling to certain workspaces. Example: autotiling --workspaces 8 9", + help="restricts autotiling to certain workspaces; example: autotiling --workspaces 8 9", nargs="*", type=str, default=[], ) @@ -108,7 +108,7 @@ def main(): """ parser.add_argument("-e", "--events", - help="list of events to trigger switching split orientation; Default: WINDOW MODE", + help="list of events to trigger switching split orientation; default: WINDOW MODE", nargs="*", type=str, default=["WINDOW", "MODE"]) |