Skip to content

Commit

Permalink
Update _ext.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cxong committed Jan 12, 2025
1 parent 3b5ba26 commit e396e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def sort_key(game):

def has_invalid_status(clone) -> bool:
# Tools and only tools must have N/A status
return (clone["type"] == "tool") != (clone["status"] != "N/A")
return (clone["type"] == "tool") != (clone["status"] == "N/A")

for clone in clones:
if 'originals' not in clone:
Expand Down

0 comments on commit e396e6a

Please sign in to comment.