From dcbbaebcf72d999875a3c17934d48b33c49ebf15 Mon Sep 17 00:00:00 2001 From: Scoder12 <34356756+Scoder12@users.noreply.github.com> Date: Tue, 4 Aug 2020 12:45:39 -0700 Subject: [PATCH] Fix typo in ratelimit example --- examples/maqpy/authed_ratelimit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/maqpy/authed_ratelimit.py b/examples/maqpy/authed_ratelimit.py index 9a9a0e6..e807702 100644 --- a/examples/maqpy/authed_ratelimit.py +++ b/examples/maqpy/authed_ratelimit.py @@ -4,7 +4,7 @@ app = maqpy.App(__name__) @app.route("/") -@maqpy.authed_ratelimited( +@maqpy.authed_ratelimit( limit=1, # Number of requests allowed period=1, # Amount of time before counter resets login_res=maqpy.Page(body=f"Sign in\n{maqpy.sign_in_snippet}"),