refactor: clean up code by adding missing commas and improving import order
This commit is contained in:
@@ -26,7 +26,7 @@ def create_app():
|
||||
|
||||
# Configure Flask-JWT-Extended
|
||||
app.config["JWT_SECRET_KEY"] = os.environ.get(
|
||||
"JWT_SECRET_KEY", "jwt-secret-key"
|
||||
"JWT_SECRET_KEY", "jwt-secret-key",
|
||||
)
|
||||
app.config["JWT_ACCESS_TOKEN_EXPIRES"] = timedelta(minutes=15)
|
||||
app.config["JWT_REFRESH_TOKEN_EXPIRES"] = timedelta(days=7)
|
||||
|
||||
Reference in New Issue
Block a user