.nson - Save Editor

def load_data(self): if os.path.exists(self.file_path): with open(self.file_path, 'r') as f: return json.load(f) else: return {}

Close