home · contact · privacy
Minor function renaming. master
authorChristian Heller <c.heller@plomlompom.de>
Mon, 16 Jun 2025 03:34:14 +0000 (05:34 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 16 Jun 2025 03:34:14 +0000 (05:34 +0200)
ircplom.py

index 95dc2fb54ad1eec875d32c977cf9efd541ec119e..aeff1c65947ee89b0ee098a8e48cf12ca56366b7 100755 (executable)
@@ -5,7 +5,7 @@ from ircplom.irc_conn import ConnEvent, InitConnectEvent, IrcConnection
 from ircplom.tui import Terminal
 
 
-def run() -> None:
+def main_loop() -> None:
     'Main execution code / loop.'
     q_to_main: EventQueue = EventQueue()
     connections: list[IrcConnection] = []
@@ -29,4 +29,4 @@ def run() -> None:
 
 
 if __name__ == '__main__':
-    run()
+    main_loop()