From 6d923201c11c356f11ea47047ab060ec2e09e4c6 Mon Sep 17 00:00:00 2001 From: Aryan Karamtoth <88923986+SpaciousCoder78@users.noreply.github.com> Date: Thu, 7 Aug 2025 17:13:16 +0530 Subject: [PATCH] fix: renamed shebang to make the examples python3 complaint --- examples/caching_requestor.py | 2 +- examples/device_id_auth_trophies.py | 2 +- examples/obtain_refresh_token.py | 2 +- examples/read_only_auth_trophies.py | 2 +- examples/script_auth_friend_list.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/caching_requestor.py b/examples/caching_requestor.py index f97c214..72b7282 100755 --- a/examples/caching_requestor.py +++ b/examples/caching_requestor.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Example program that shows how simple in-memory caching can be used. diff --git a/examples/device_id_auth_trophies.py b/examples/device_id_auth_trophies.py index 4a51088..1c61221 100755 --- a/examples/device_id_auth_trophies.py +++ b/examples/device_id_auth_trophies.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Example program that outputs a user's list of trophies. diff --git a/examples/obtain_refresh_token.py b/examples/obtain_refresh_token.py index bc4bc86..2718d4d 100755 --- a/examples/obtain_refresh_token.py +++ b/examples/obtain_refresh_token.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Example program that demonstrates the flow for retrieving a refresh token. diff --git a/examples/read_only_auth_trophies.py b/examples/read_only_auth_trophies.py index 69f4d11..a06b04a 100755 --- a/examples/read_only_auth_trophies.py +++ b/examples/read_only_auth_trophies.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Example program that outputs a user's list of trophies. diff --git a/examples/script_auth_friend_list.py b/examples/script_auth_friend_list.py index 463feb2..e636bd0 100755 --- a/examples/script_auth_friend_list.py +++ b/examples/script_auth_friend_list.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """script_auth_friend_list.py outputs the authenticated user's list of friends.