mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-21 09:35:40 +02:00
i3-companion: fix typing error
This commit is contained in:
parent
45043e617a
commit
ef60aa5f13
1 changed files with 1 additions and 1 deletions
|
@ -1184,7 +1184,7 @@ async def main(options):
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
# Parse
|
# Parse
|
||||||
description = sys.modules[__name__].__doc__
|
description = sys.modules[__name__].__doc__ or ""
|
||||||
for fn, events in on.functions.items():
|
for fn, events in on.functions.items():
|
||||||
description += f" {fn.__doc__}"
|
description += f" {fn.__doc__}"
|
||||||
parser = argparse.ArgumentParser(description=description)
|
parser = argparse.ArgumentParser(description=description)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue