From e90e9f44aeae20af5f1f5693d57348b24848bc8f Mon Sep 17 00:00:00 2001 From: "P. Raj Kumar" Date: Fri, 1 Mar 2019 19:46:48 -0800 Subject: [PATCH] Update README.rst --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 5708fde7..eff1708b 100644 --- a/README.rst +++ b/README.rst @@ -16,11 +16,11 @@ Uplink turns your HTTP API into a Python class. from uplink import Consumer, get, headers, Path, Query class GitHub(Consumer): - """A Python Client for the GitHub API.""" + """A Python Client for the GitHub API.""" - @get("users/{user}/repos") - def get_repos(self, user: Path, sort_by: Query("sort")): - """Retrieves the user's public repositories.""" + @get("users/{user}/repos") + def get_repos(self, user: Path, sort_by: Query("sort")): + """Retrieves the user's public repositories.""" Build an instance to interact with the webservice.