Files
Nugget/devicemanagement/data_singleton.py
2024-09-18 12:41:47 -04:00

9 lines
237 B
Python

from pathlib import Path
from devicemanagement.constants import Device, Tweak
class DataSingleton:
def __init__(self):
self.current_device: Device
self.device_available: bool = False
self.gestalt_path = None