Use __name__ instead of constant in app constructor

This commit is contained in:
Scoder12
2020-07-28 16:23:01 -07:00
parent 3660b112a6
commit 034ab730cd
+1 -1
View File
@@ -1,7 +1,7 @@
"""A basic example of repl auth."""
from replit import maqpy
app = maqpy.App("app")
app = maqpy.App(__name__)
@app.route("/")