Bread_Editor/utils.py

13 lines
217 B
Python
Raw Normal View History

#!/usr/bin/python3
from pathlib import Path
from PyQt6.QtWidgets import QFileDialog
from file import File
class Utils:
def __init__(self, app):
self.app = app
self.home_path = str(Path.home())