From 307a59cd9f34ed339d469f5fdf2f81eddd87cfb6 Mon Sep 17 00:00:00 2001 From: Ritchie Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Sat, 24 Jan 2026 00:16:29 +0200 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 13ee76e..86579a3 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,8 @@ $ octosuite user torvalds from pprint import pprint import octosuite -exists, profile = octosuite.User(name="torvalds") +user = octosuite.User(name="torvalds") +exists, profile = user.exists() if exists: pprint(profile)