From ef60aa5f13f819815fce944ea4eba543357a4781 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 6 Jul 2024 09:16:03 +0200 Subject: [PATCH] i3-companion: fix typing error --- bin/i3-companion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/i3-companion b/bin/i3-companion index 4785a79..ce85d16 100755 --- a/bin/i3-companion +++ b/bin/i3-companion @@ -1184,7 +1184,7 @@ async def main(options): if __name__ == "__main__": # Parse - description = sys.modules[__name__].__doc__ + description = sys.modules[__name__].__doc__ or "" for fn, events in on.functions.items(): description += f" {fn.__doc__}" parser = argparse.ArgumentParser(description=description)