From bf09b0bcc6949bdfaf9629a27b50e5fde2c5e3cb Mon Sep 17 00:00:00 2001 From: EKNr1 Date: Sun, 5 Nov 2023 18:36:40 +0100 Subject: [PATCH] /tools/ now has to be in /site-packages/ or /dist-packages/. --- pg.py | 2 +- text.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pg.py b/pg.py index 27c0a7c..3c7c954 100644 --- a/pg.py +++ b/pg.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 import pygame -import text +from tools import text log = text.Log() diff --git a/text.py b/text.py index cd554a1..678685b 100644 --- a/text.py +++ b/text.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 import random -import buntcheck +from tools import buntcheck def format_string(text: str, prefix: str = "§", suffix: str = "", auto_rs: bool = True): # formats the text e.g. text after "§red" is colored red