Skip to content

Commit e11f362

Browse files
authored
Merge pull request #22 from astronomer/update-version-1.0.4
release plugin 1.0.4
2 parents 6cc901e + 1abb8a5 commit e11f362

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,8 @@ repos:
2121
- id: remove-unicode-non-breaking-spaces
2222
- id: remove-unicode-zero-width-non-breaking-spaces
2323
- id: remove-unicode-zero-width-space
24-
- repo: https://github.com/psf/black
25-
rev: 23.1.0
26-
hooks:
27-
- id: black
2824
- repo: https://github.com/charliermarsh/ruff-pre-commit
29-
rev: "v0.0.261"
25+
rev: "v0.0.291"
3026
hooks:
3127
- id: ruff
3228
args: [--fix, --exit-non-zero-on-fix, --ignore, E501]

dbcleanup_plugin.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import logging
55
import json
66

7-
from flask import Blueprint, request, Response, Blueprint, flash, redirect, render_template, request, g
7+
from flask import Blueprint, request, Response, flash, redirect, render_template, g
88
from flask_appbuilder import BaseView as AppBuilderBaseView
99
from flask_appbuilder import expose
1010
from flask_login.utils import _get_user
@@ -21,15 +21,14 @@
2121
from airflow.utils import db_cleanup, dates
2222
from airflow.utils.db_cleanup import config_dict
2323
from airflow.settings import conf
24-
from airflow.www import auth
2524

2625
from .cloud_providers import ProviderFactory
2726
from .utils import env_check
28-
from typing import Callable, TYPE_CHECKING, TypeVar, cast, Sequence
27+
from typing import Callable, TypeVar, cast, Sequence
2928

3029
T = TypeVar("T", bound=Callable)
3130

32-
__version__ = "1.0.3"
31+
__version__ = "1.0.4"
3332

3433
log = logging.getLogger(__name__)
3534

0 commit comments

Comments
 (0)