Skip to content

Commit

Permalink
Fix isort
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmud committed Jul 29, 2022
1 parent 9c2e716 commit 0c44dee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion superset/reports/notifications/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from typing import Any, Dict, Optional

import bleach

from flask_babel import gettext as __

from superset import app
Expand Down
3 changes: 2 additions & 1 deletion tests/unit_tests/notifications/email_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
# specific language governing permissions and limitations
# under the License.
import pandas as pd
from flask.ctx import AppContext


def test_render_description_with_html(app_context):
def test_render_description_with_html(app_context: AppContext) -> None:
# `superset.models.helpers`, a dependency of following imports,
# requires app context
from superset.reports.models import ReportRecipients, ReportRecipientType
Expand Down

0 comments on commit 0c44dee

Please sign in to comment.