Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Jul 2, 2024
1 parent 1312aaa commit fd17bf7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/check_gamefixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,10 @@ def main() -> None:
# Top-level project directory that is expected to contain gamefix directories
project = Path(__file__).parent.parent

# Steam API to acquire a single id. Unforutnately, this endpoint does not accept
# a comma separated list of IDs so we have to make one request per ID
# Steam API to acquire a single id. Used as fallback in case some IDs could
# not be validated. Unforutnately, this endpoint does not accept a comma
# separated list of IDs so we have to make one request per ID after making
# making a request to `api.steampowered.com`.
# NOTE: There's neither official nor unofficial documentation. Only forum posts
# See https://stackoverflow.com/questions/46330864/steam-api-all-games
steamapi: ApiEndpoint = ("store.steampowered.com", "/api/appdetails?appids=")
Expand All @@ -171,6 +173,7 @@ def main() -> None:
umudb_gog: ApiEndpoint = ("umu.openwinecomponents.org", "/umu_api.php?store=gog")

# Steam API
# Main API used to validate steam gamefixes
# NOTE: There's neither official nor unofficial documentation. Only forum posts
# See https://stackoverflow.com/questions/46330864/steam-api-all-games
steampowered = (
Expand Down

0 comments on commit fd17bf7

Please sign in to comment.