Corrected some imports.

This commit is contained in:
The Wobbler 2024-02-25 15:03:11 +01:00
parent 9a52203ba2
commit 246875690f
2 changed files with 3 additions and 2 deletions

2
pg.py
View file

@ -1,7 +1,7 @@
#!/usr/bin/python3 #!/usr/bin/python3
import pygame import pygame
from tools import text from wobbl_tools import text
from typing import Union, Callable from typing import Union, Callable

View file

@ -1,7 +1,8 @@
#!/usr/bin/python3 #!/usr/bin/python3
import random import random
from tools import buntcheck from wobbl_tools import buntcheck
def format_string(text: str, prefix: str = "§", suffix: str = "", def format_string(text: str, prefix: str = "§", suffix: str = "",
auto_rs: bool = True): # formats the text e.g. text after "§red" is colored red auto_rs: bool = True): # formats the text e.g. text after "§red" is colored red