From 428814b318335da6334b796273eea6f8cfebb811 Mon Sep 17 00:00:00 2001 From: jkhsjdhjs Date: Sun, 16 Jul 2023 22:26:17 +0000 Subject: [PATCH] disable fefe and garbage collection threads --- bert.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bert.py b/bert.py index d83ec08..1d5ed5f 100755 --- a/bert.py +++ b/bert.py @@ -604,15 +604,15 @@ def main(): auth.set_access_token(access_token, access_secret) api = tweepy.API(auth) thread_command = command_thread(1) - thread_fefe = fefe_thread(2) - thread_gc = gc_thread(3) + #thread_fefe = fefe_thread(2) + #thread_gc = gc_thread(3) thread_command.start() - sleep(2) - thread_fefe.start() - sleep(2) - thread_gc.start() + #sleep(2) + #thread_fefe.start() + #sleep(2) + #thread_gc.start() if __name__ == "__main__": - gc.enable() + #gc.enable() main()