Skip to content

Commit

Permalink
Merge pull request #53 from KOSASIH/deepsource-transform-f2f86a12
Browse files Browse the repository at this point in the history
style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf
  • Loading branch information
KOSASIH authored May 11, 2024
2 parents 6f5f118 + 3b8eef4 commit 466ea63
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Main application file
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_cors import CORS
from app.routes import api, web
from flask_migrate import Migrate
from flask_sqlalchemy import SQLAlchemy

from app.config import Config
from app.routes import api, web

app = Flask(__name__)
app.config.from_object(Config)
Expand All @@ -15,5 +16,5 @@
app.register_blueprint(api)
app.register_blueprint(web)

if __name__ == '__main__':
if __name__ == "__main__":
app.run(debug=True)

0 comments on commit 466ea63

Please sign in to comment.