Skip to content

Commit

Permalink
modified: ufade_gui.py
Browse files Browse the repository at this point in the history
  • Loading branch information
prosch88 committed Aug 17, 2024
1 parent 29073a0 commit 93a4de1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ufade_gui.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/usr/bin/env python3
# UFADE - Universal Forensic Apple Device Extractor (c) C.Peter 2024
# Licensed under GPLv3 License
import sys
import os
if sys.stdout is None:
sys.stdout = open(os.devnull, "w")
if sys.stderr is None:
sys.stderr = open(os.devnull, "w")
import customtkinter as ctk
from PIL import ImageTk, Image, ExifTags
from tkinter import StringVar
Expand Down Expand Up @@ -53,12 +59,6 @@
import zipfile
import threading
import platform
import sys
import os
if sys.stdout is None:
sys.stdout = open(os.devnull, "w")
if sys.stderr is None:
sys.stderr = open(os.devnull, "w")
import time
import tempfile
import re
Expand Down

0 comments on commit 93a4de1

Please sign in to comment.