Skip to content

Commit 13d89b7

Browse files
committed
v2.0.0 patch
1 parent 8cdd707 commit 13d89b7

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

main.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@
1010
import pyclip
1111
import simple_webbrowser
1212
from PIL import ImageTk, Image
13+
import requests as _
1314
from core import utils_constants as consts
1415
from core.database_handler import get_database, get_image, check_for_updates, __CloseDialogError
1516
from core.settings import SettingsObject
1617

18+
del _
19+
1720

1821
LATEST = None
1922

@@ -319,11 +322,6 @@ class __InvalidButtonAction(Exception): ...
319322

320323

321324
def open_listbox(options: list | tuple, var: tk.Variable) -> None:
322-
print(selected_game.get())
323-
print(selected_episode.get())
324-
print(selected_map.get())
325-
print(selected_secrets.get())
326-
327325
topl = tk.Toplevel(root)
328326
topl.title("DoomMapGuesser - Pick an Option")
329327
topl.geometry('600x400')
@@ -359,7 +357,7 @@ def save_to_variable():
359357
selected_map.set(list(CUR_DB.structure[selected_game.get()][selected_episode.get()].keys())[0])
360358

361359
case _:
362-
print('map edited')
360+
pass
363361

364362
topl.destroy()
365363

@@ -504,8 +502,6 @@ def generate_new_round(*_, first: dict[str, Any] = None, second: dict[str, Any]
504502

505503
PLAY_ITEMS.points_label.configure(text=f'Points: {POINTS} / {GEN_SF - 4}')
506504

507-
print(CUR_DATA)
508-
509505

510506
def final_guess(*_, first: dict[str, Any] = None, second: dict[str, Any] = None, third: dict[str, Any] = None):
511507
global POINTS

0 commit comments

Comments
 (0)