mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 01:27:11 +00:00
refactor: syntax, types, logging, cleanup
This commit is contained in:
+6
-3
@@ -28,9 +28,12 @@ class Project():
|
||||
self.project_exe: str = ""
|
||||
|
||||
|
||||
def init(self):
|
||||
self.payload.init()
|
||||
self.injectable.init()
|
||||
def init(self) -> bool:
|
||||
if not self.payload.init():
|
||||
return False
|
||||
if not self.injectable.init():
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
def prepare_project(project_name, settings):
|
||||
|
||||
Reference in New Issue
Block a user