Skip to content

Commit

Permalink
chore: Set printer default width to 80 (#131)
Browse files Browse the repository at this point in the history
* fix: Typing

* chore: Set printer default width to 80
  • Loading branch information
tomasfarias authored Jan 30, 2024
1 parent 5cd7863 commit 2028102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow_dbt_python/utils/configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class BaseConfig:
debug: Optional[bool] = None
quiet: Optional[bool] = None
no_print: Optional[bool] = None
printer_width: Optional[int] = None
printer_width: int = 80

# Mutually exclusive attributes
defer: Optional[bool] = None
Expand Down Expand Up @@ -686,7 +686,7 @@ class RunTaskConfig(TableMutabilityConfig):
class RunOperationTaskConfig(BaseConfig):
"""Dbt run-operation task arguments."""

args: dict[str, Any] | str = dataclasses.field(default_factory=dict)
args: dict[str, Any] | str = dataclasses.field(default_factory=dict) # type: ignore
cls: Type[BaseTask] = dataclasses.field(default=RunOperationTask, init=False)
macro: Optional[str] = None
which: str = dataclasses.field(default="run-operation", init=False)
Expand Down

0 comments on commit 2028102

Please sign in to comment.