From 4cbc8438ebd1fe02d6b778512c4700c5a1651fca Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 31 Dec 2020 09:47:48 +1100 Subject: [PATCH] docs: fix simple typo, releated -> related There is a small typo in pyrebase/pyrebase.py. Should read `related` rather than `releated`. --- pyrebase/pyrebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrebase/pyrebase.py b/pyrebase/pyrebase.py index bc1fc3e..7580b9a 100644 --- a/pyrebase/pyrebase.py +++ b/pyrebase/pyrebase.py @@ -50,7 +50,7 @@ def __init__(self, config): self.credentials = ServiceAccountCredentials.from_json_keyfile_dict(config["serviceAccount"], scopes) if is_appengine_sandbox(): # Fix error in standard GAE environment - # is releated to https://github.com/kennethreitz/requests/issues/3187 + # is related to https://github.com/kennethreitz/requests/issues/3187 # ProtocolError('Connection aborted.', error(13, 'Permission denied')) adapter = appengine.AppEngineAdapter(max_retries=3) else: