From 7540e57c08645bc41844b5dfbf45324fa2b6b3c9 Mon Sep 17 00:00:00 2001 From: kono Date: Thu, 23 Sep 2021 22:54:00 +0200 Subject: [PATCH] Using functools partial to pass function instead of return value of function --- myTS3.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/myTS3.py b/myTS3.py index 0cc1519..cf2adb2 100644 --- a/myTS3.py +++ b/myTS3.py @@ -12,6 +12,7 @@ __status__ = "Development" import os import json from time import sleep +from functools import partial # Custom import ts3 @@ -87,10 +88,10 @@ class MyTeamspeakBot: # Start the timer for auto-updating crypto channels channelname = f"{'[cspacerBTC]Bitcoin:':<33}" + f"{self.gecko.getSymbol('BTC', decimal=0):>5}€" - btc_timer = util.maketimer(60, self.editChannelname(200, channelname)) + btc_timer = util.maketimer(60, partial(self.editChannelname, 200, channelname)) btc_timer.start() channelname = f"{'[cspacerETH]Ethereum:':<30}" + f"{self.gecko.getSymbol('ETH', decimal=0):>5}€" - eth_timer = util.maketimer(60, self.editChannelname(201, channelname)) + eth_timer = util.maketimer(60, partial(self.editChannelname, 201, channelname)) eth_timer.start() # Notify connected admins -- 2.34.1