Skip to content

Commit

Permalink
Fix README.md
Browse files Browse the repository at this point in the history
The files argument should be a keyword argument
  • Loading branch information
WitherredAway committed May 20, 2022
1 parent 5f1a6ed commit 12946a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 12946a4

Please sign in to comment.