From 2f9467497c2ff3fe89d27ebaf77862bcb770b967 Mon Sep 17 00:00:00 2001 From: DevilXD <4180725+DevilXD@users.noreply.github.com> Date: Tue, 10 Sep 2024 14:39:52 +0200 Subject: [PATCH] Min. Python version is 3.10, so this check isn't needed anymore --- main.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index eb6bd85..861384f 100644 --- a/main.py +++ b/main.py @@ -18,9 +18,8 @@ if __name__ == "__main__": from tkinter import messagebox from typing import IO, NoReturn - if sys.version_info >= (3, 10): - import truststore - truststore.inject_into_ssl() + import truststore + truststore.inject_into_ssl() from translate import _ from twitch import Twitch