12 lines
217 B
Python
12 lines
217 B
Python
#!/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())
|