From eb045fa94a86a8b4b68aadb28cb77a5f94d9da41 Mon Sep 17 00:00:00 2001 From: sugoidogo Date: Sun, 20 Jul 2025 23:14:19 -0700 Subject: [PATCH] fix update function args --- astrolobot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrolobot.py b/astrolobot.py index 92b7660..da14761 100755 --- a/astrolobot.py +++ b/astrolobot.py @@ -7,7 +7,7 @@ from threading import Thread from os import makedirs,path import json,sys,webbrowser,importlib,tomllib -def update(): +def update(*args): print('checking for updates...') with open(script_path()+'astrolobott.py','r') as file: current_script=file.read()