Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump black from 23.12.1 to 24.1.1 #127

Merged
merged 3 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# black 2024 code style update
36d81ead9eff1da24f498bbfd89fabfa0a6595c7
1 change: 1 addition & 0 deletions dags/data_quality_checks_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
ACCESS_KEY_ID=<your_aws_access_key>
SECRET_ACCESS_KEY=<your_aws_secret_key>
"""

import os
import pendulum
from airflow.decorators import dag, task, task_group
Expand Down
1 change: 1 addition & 0 deletions dags/data_retention_delete_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
In CrateDB, tables for storing retention policies need to be created once manually.
See the file setup/data_retention_schema.sql in this repository.
"""

from pathlib import Path
import pendulum
from airflow.providers.common.sql.operators.sql import SQLExecuteQueryOperator
Expand Down
1 change: 1 addition & 0 deletions dags/data_retention_reallocate_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Tables for storing retention policies need to be created once manually in
CrateDB. See the file setup/data_retention_schema.sql in this repository.
"""

from pathlib import Path
import pendulum
from airflow.providers.common.sql.operators.sql import SQLExecuteQueryOperator
Expand Down
1 change: 1 addition & 0 deletions dags/data_retention_snapshot_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
In CrateDB, tables for storing retention policies need to be created once manually.
See the file setup/data_retention_schema.sql in this repository.
"""

from pathlib import Path
import pendulum
from airflow.providers.common.sql.operators.sql import SQLExecuteQueryOperator
Expand Down
1 change: 1 addition & 0 deletions dags/financial_data_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
In CrateDB, the schema to store this data needs to be created once manually.
See the file setup/financial_data_schema.sql in this repository.
"""

import datetime
import math
import json
Expand Down
1 change: 1 addition & 0 deletions dags/nyc_taxi_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
present before running the DAG. You can retrieve the CREATE TABLE statements
from the file setup/taxi-schema.sql in this repository.
"""

import pendulum
from airflow.models import Variable
from airflow.decorators import task, dag
Expand Down
1 change: 1 addition & 0 deletions dags/table_export_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

A detailed tutorial is available at https://community.crate.io/t/cratedb-and-apache-airflow-automating-data-export-to-s3/901
"""

import os
import pendulum
from airflow.decorators import dag, task_group
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extras_require={
"develop": [
"pylint==3.0.3",
"black==23.12.1",
"black==24.1.1",
],
"testing": [
"pytest==7.4.4",
Expand Down