Skip to content

Commit

Permalink
Fix incorrect Markup references
Browse files Browse the repository at this point in the history
  • Loading branch information
kizniche committed Jan 13, 2024
1 parent ae37275 commit bf85a2b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mycodo/inputs/python_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import os
import textwrap

from flask import Markup
from flask import current_app
from flask import flash
from markupsafe import Markup

from mycodo.config import INSTALL_DIRECTORY
from mycodo.config import PATH_PYTHON_CODE_USER
Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/python_code_v_2_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import os
import textwrap

from flask import Markup
from flask import current_app
from flask import flash
from markupsafe import Markup

from mycodo.config import INSTALL_DIRECTORY
from mycodo.config import PATH_PYTHON_CODE_USER
Expand Down
2 changes: 1 addition & 1 deletion mycodo/outputs/on_off_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
import os
import textwrap

from flask import Markup
from flask import current_app
from flask_babel import lazy_gettext
from markupsafe import Markup

from mycodo.config import INSTALL_DIRECTORY
from mycodo.config import PATH_PYTHON_CODE_USER
Expand Down
2 changes: 1 addition & 1 deletion mycodo/outputs/pwm_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import os
import textwrap

from flask import Markup
from flask import current_app
from flask_babel import lazy_gettext
from markupsafe import Markup
from sqlalchemy import and_

from mycodo.config import INSTALL_DIRECTORY
Expand Down
3 changes: 2 additions & 1 deletion mycodo/utils/code_verification.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-
import logging
import os
from flask import Markup

from markupsafe import Markup

from mycodo.config import INSTALL_DIRECTORY
from mycodo.config import PATH_PYTHON_CODE_USER
Expand Down

0 comments on commit bf85a2b

Please sign in to comment.