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}"),