Skip to content

Commit

Permalink
updated models.db mistake when init the app to db
Browse files Browse the repository at this point in the history
  • Loading branch information
hakiKhuva committed Apr 18, 2023
1 parent 1a77b47 commit 8c7d6ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions flask-boilerplate-creator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Generate boilerplate structure for flask web app
author: Harkishan Khuva <harkishankhuva.pythonanywhere.com>
created date: 07/04/2023 IST
version: 0.0.3
created date: 18/04/2023 IST
version: 0.0.4
"""

# :: IMPORTS
Expand Down Expand Up @@ -74,7 +74,7 @@ def _is_folder(obj:dict):
"from flask import Flask\n"
"# from flask_migrate import Migrate # uncomment if need\n"
"# from flask_session import Session # uncomment if need\n\n"
"# from .models import db # uncomment if need\n"
"# from .models.db import db # uncomment if need\n"
"from .settings import APP_SETTINGS\n\n"
"# migrate = Migrate() # uncomment if need \n"
"# session = Session() # uncomment if need \n\n"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="Flask Boilerplate Creator",
version="0.0.3",
version="0.0.4",
description="Create boilerplate structure of flask web application",
author="Harkishan Khuva",
author_email="hakitechy@gmail.com",
Expand Down

0 comments on commit 8c7d6ee

Please sign in to comment.