File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ class BaseConfig:
124124 debug : Optional [bool ] = None
125125 quiet : Optional [bool ] = None
126126 no_print : Optional [bool ] = None
127- printer_width : Optional [ int ] = None
127+ printer_width : int = 80
128128
129129 # Mutually exclusive attributes
130130 defer : Optional [bool ] = None
@@ -686,7 +686,7 @@ class RunTaskConfig(TableMutabilityConfig):
686686class RunOperationTaskConfig (BaseConfig ):
687687 """Dbt run-operation task arguments."""
688688
689- args : dict [str , Any ] | str = dataclasses .field (default_factory = dict )
689+ args : dict [str , Any ] | str = dataclasses .field (default_factory = dict ) # type: ignore
690690 cls : Type [BaseTask ] = dataclasses .field (default = RunOperationTask , init = False )
691691 macro : Optional [str ] = None
692692 which : str = dataclasses .field (default = "run-operation" , init = False )
You can’t perform that action at this time.
0 commit comments