Skip to content

Commit

Permalink
Remove unused functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ZashIn committed Sep 13, 2024
1 parent 470df15 commit 7c7823f
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions games/game_cyberpunk2077.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,6 @@ def __init__(self):
)


def clear_empty_folder(filetree: mobase.IFileTree | None):
if filetree is None:
return
while not filetree:
parent = filetree.parent()
filetree.detach()
if parent is None:
break
filetree = parent


def time_from_seconds(s: int | float) -> str:
m, s = divmod(int(s), 60)
h, m = divmod(int(m), 60)
Expand Down

0 comments on commit 7c7823f

Please sign in to comment.