From 5449659566a47debf6cb8d46fddf3f341b02658f Mon Sep 17 00:00:00 2001 From: deesiigneer Date: Mon, 18 Jul 2022 22:15:21 +0300 Subject: [PATCH] update example --- examples/mojangapi/get_name_history.py | 2 +- examples/mojangapi/get_profile.py | 2 +- examples/mojangapi/get_username.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/mojangapi/get_name_history.py b/examples/mojangapi/get_name_history.py index e75aced..aeaff73 100644 --- a/examples/mojangapi/get_name_history.py +++ b/examples/mojangapi/get_name_history.py @@ -1,3 +1,3 @@ import pyspapi -mojangapi = pyspapi.MojangAPI.get_name_history(uuid='63ed47877aa3470fbfc46c5356c3d797') +print(pyspapi.MojangAPI.get_name_history(uuid='63ed47877aa3470fbfc46c5356c3d797')) diff --git a/examples/mojangapi/get_profile.py b/examples/mojangapi/get_profile.py index 3df8a60..660f334 100644 --- a/examples/mojangapi/get_profile.py +++ b/examples/mojangapi/get_profile.py @@ -1,3 +1,3 @@ import pyspapi -mojangapi = pyspapi.MojangAPI.get_profile(uuid='63ed47877aa3470fbfc46c5356c3d797') +print(pyspapi.MojangAPI.get_profile(uuid='63ed47877aa3470fbfc46c5356c3d797')) diff --git a/examples/mojangapi/get_username.py b/examples/mojangapi/get_username.py index 404e3af..90161db 100644 --- a/examples/mojangapi/get_username.py +++ b/examples/mojangapi/get_username.py @@ -1,3 +1,3 @@ import pyspapi -mojangapi = pyspapi.MojangAPI.get_username(uuid='63ed47877aa3470fbfc46c5356c3d797') +print(pyspapi.MojangAPI.get_username(uuid='63ed47877aa3470fbfc46c5356c3d797'))