Skip to content

Commit

Permalink
Dependency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ps-mzamette committed Dec 1, 2023
1 parent 28d56b9 commit 59ec8b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

basedir = path.abspath(path.dirname(__file__))

engine: Engine = create_engine('sqlite:///' +
path.join(basedir, '..', 'database.db'),
echo=True,
encoding='utf8')
engine: Engine = create_engine(
'sqlite:///' + path.join(basedir, '..', 'database.db'),
echo=True,
)

BaseModel.metadata.create_all(bind=engine)

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
astroid==2.15.6
astroid==3.0.1
bcrypt==4.0.1
Bootstrap-Flask==2.2.0
click==8.1.3
dill==0.3.6
Flask==3.0.0
Flask==2.3.3
Flask-CKEditor==0.4.6
Flask-Login==0.6.3
Flask-SQLAlchemy==3.1.1
Expand Down

0 comments on commit 59ec8b8

Please sign in to comment.