Skip to content

Commit

Permalink
Lint fixes after running pre-commit run --all-files (#312)
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
tatiana authored Dec 5, 2024
1 parent 72bc85b commit fa4c23f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add registration icon and links to Airflow references by @cmarteepants in #190
- Update quickstart and add feature examples by @cmarteepants #189
- Fix `README.md` badges by @tatiana in #260
- Remove duplicated operator in `README.md` by @brair in #263
- Remove duplicated operator in `README.md` by @brair in #263

### Breaking changes
- Removed support for Python 3.7
Expand Down
5 changes: 1 addition & 4 deletions tests/test_example_dags.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from __future__ import annotations

import os
from pathlib import Path

try:
Expand All @@ -20,9 +19,7 @@
EXAMPLE_DAGS_DIR = Path(__file__).parent.parent / "dev/dags"
AIRFLOW_IGNORE_FILE = EXAMPLE_DAGS_DIR / ".airflowignore"
AIRFLOW_VERSION = Version(airflow.__version__)
IGNORED_DAG_FILES = [
"example_callbacks.py"
]
IGNORED_DAG_FILES = ["example_callbacks.py"]

MIN_VER_DAG_FILE_VER: dict[str, list[str]] = {
"2.3": ["example_dynamic_task_mapping.py"],
Expand Down

0 comments on commit fa4c23f

Please sign in to comment.