From 12946a44c7615e4b610544f3194d8f658ec24d34 Mon Sep 17 00:00:00 2001 From: WitherredAway Date: Fri, 20 May 2022 09:39:26 +0000 Subject: [PATCH] Fix README.md The files argument should be a keyword argument --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f5f694a..6bbb04b 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ async def main_create() -> gists.Gist: public = True # This method creates a new gist and returns a Gist object associated with that gist - gist = await client.create_gist(files, description=description, public=public) + gist = await client.create_gist(files=files, description=description, public=public) return gist # Run the main_create() function