split line
This commit is contained in:
parent
028a94acf6
commit
7d4fe15646
1 changed files with 2 additions and 1 deletions
3
hack.py
3
hack.py
|
@ -65,7 +65,8 @@ class Hack():
|
||||||
def _find_process(self, verbose: bool = False) -> Pymem:
|
def _find_process(self, verbose: bool = False) -> Pymem:
|
||||||
"""Find game process"""
|
"""Find game process"""
|
||||||
process_found = False
|
process_found = False
|
||||||
print("Looking for process... ", end="", flush=True) if verbose else None
|
print("Looking for process... ", end="",
|
||||||
|
flush=True) if verbose else None
|
||||||
|
|
||||||
pm = None
|
pm = None
|
||||||
while not process_found:
|
while not process_found:
|
||||||
|
|
Reference in a new issue