From 3e3f3b08720bcf988a9f47a1f110a66ba69650ef Mon Sep 17 00:00:00 2001 From: jmkdev <21228906+jmkd3v@users.noreply.github.com> Date: Tue, 6 Aug 2024 21:01:46 -0400 Subject: [PATCH] Update get-started.md --- docs/tutorials/get-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/get-started.md b/docs/tutorials/get-started.md index 4a2ea27a..25b384ce 100644 --- a/docs/tutorials/get-started.md +++ b/docs/tutorials/get-started.md @@ -32,7 +32,7 @@ from roblox import Client client = Client() async def main(): - await client.get_user(1) + user = await client.get_user(1) asyncio.run(main()) ``` @@ -57,4 +57,4 @@ print("Description:", group.description) To see a list of everything you can do with the client, see [`Client`][roblox.client.Client] in the Code Reference. -So far, we've been using ro.py **unauthenticated**. Basically, we aren't logged in to Roblox, which means we can't perform any actions, like updating our description, or access any sensitive information, like which game our friend is playing right now. Your next mission, if you choose to accept it, is [authenticating your client](./authentication.md). \ No newline at end of file +So far, we've been using ro.py **unauthenticated**. Basically, we aren't logged in to Roblox, which means we can't perform any actions, like updating our description, or access any sensitive information, like which game our friend is playing right now. Your next mission, if you choose to accept it, is [authenticating your client](./authentication.md).