Fix typo in ratelimit example

This commit is contained in:
Scoder12
2020-08-04 12:45:39 -07:00
parent 47ccdb8f77
commit dcbbaebcf7
+1 -1
View File
@@ -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}"),