Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marianoag authored Apr 15, 2024
1 parent 7116d2f commit 7ad661a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gamefixes-steam/1137300.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ def _get_pid(procname: str) -> int:
def get_pid(procname: str, untilfound: bool=False) -> int:
while True:
pid = _get_pid(procname)
if pid != None or not untilfound:
if pid is not None or not untilfound:
return pid
break

def install_xdotool(path_to_exe: str):
if not os.path.isfile(os.path.join(path_to_exe, 'busybox_AR')):
Expand Down

0 comments on commit 7ad661a

Please sign in to comment.