Skip to content

Commit

Permalink
Merge pull request #22 from astronomer/update-version-1.0.4
Browse files Browse the repository at this point in the history
release plugin 1.0.4
  • Loading branch information
pgvishnuram authored Oct 11, 2023
2 parents 6cc901e + 1abb8a5 commit e11f362
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
6 changes: 1 addition & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,8 @@ repos:
- id: remove-unicode-non-breaking-spaces
- id: remove-unicode-zero-width-non-breaking-spaces
- id: remove-unicode-zero-width-space
- repo: https://github.com/psf/black
rev: 23.1.0
hooks:
- id: black
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.0.261"
rev: "v0.0.291"
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --ignore, E501]
Expand Down
7 changes: 3 additions & 4 deletions dbcleanup_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import logging
import json

from flask import Blueprint, request, Response, Blueprint, flash, redirect, render_template, request, g
from flask import Blueprint, request, Response, flash, redirect, render_template, g
from flask_appbuilder import BaseView as AppBuilderBaseView
from flask_appbuilder import expose
from flask_login.utils import _get_user
Expand All @@ -21,15 +21,14 @@
from airflow.utils import db_cleanup, dates
from airflow.utils.db_cleanup import config_dict
from airflow.settings import conf
from airflow.www import auth

from .cloud_providers import ProviderFactory
from .utils import env_check
from typing import Callable, TYPE_CHECKING, TypeVar, cast, Sequence
from typing import Callable, TypeVar, cast, Sequence

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

__version__ = "1.0.3"
__version__ = "1.0.4"

log = logging.getLogger(__name__)

Expand Down

0 comments on commit e11f362

Please sign in to comment.