Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 16, 2024
1 parent 39f2e01 commit 1ac0747
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dpti/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"equi",
"gdi",
"hti",
"hti_liq",
"hti_ice",
"hti_liq",
"hti_water",
"lib",
"ti",
"ti_water",
"lib",
]
6 changes: 3 additions & 3 deletions dpti/dags/dp_ti_gdi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import time
from datetime import datetime, timedelta
from typing import ClassVar, Dict
from typing import ClassVar

Check warning on line 5 in dpti/dags/dp_ti_gdi.py

View check run for this annotation

Codecov / codecov/patch

dpti/dags/dp_ti_gdi.py#L5

Added line #L5 was not covered by tests

from airflow import DAG
from airflow.api.client.local_client import Client
Expand Down Expand Up @@ -30,12 +30,12 @@


class GDIDAGFactory:
default_args: ClassVar[Dict[str, object]] = {
default_args: ClassVar[dict[str, object]] = {

Check warning on line 33 in dpti/dags/dp_ti_gdi.py

View check run for this annotation

Codecov / codecov/patch

dpti/dags/dp_ti_gdi.py#L33

Added line #L33 was not covered by tests
"owner": "airflow",
"start_date": datetime(2018, 1, 1),
}

dagargs: ClassVar[Dict[str, object]] = {
dagargs: ClassVar[dict[str, object]] = {

Check warning on line 38 in dpti/dags/dp_ti_gdi.py

View check run for this annotation

Codecov / codecov/patch

dpti/dags/dp_ti_gdi.py#L38

Added line #L38 was not covered by tests
"default_args": default_args,
"schedule_interval": None,
}
Expand Down

0 comments on commit 1ac0747

Please sign in to comment.