updating flask to 3.0.3
be aware, to fix the Markup problem i had to change the package of flask_table.
in this package i change the line that using markup from flask to use from MarkupSafe
the moudles that need to be change are Col html and table.
just need to make sure changing this line:
from flask import Markup
to this line:
from markupsafe import Markup
updating flask to 3.0.3 be aware, to fix the Markup problem i had to change the package of flask_table. in this package i change the line that using markup from flask to use from MarkupSafe the moudles that need to be change are Col html and table. just need to make sure changing this line: from flask import Markup to this line: from markupsafe import Markup