Skip to content

Commit

Permalink
Fix printer_width arg type in DbtProfileConfigVars (#1191)
Browse files Browse the repository at this point in the history
Closes #1187
  • Loading branch information
jessicaschueler authored and ags-de committed Sep 24, 2024
1 parent a5d7fa6 commit 567094d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/profiles/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DbtProfileConfigVars:
partial_parse: Optional[bool] = None
use_experimental_parser: Optional[bool] = None
static_parser: Optional[bool] = None
printer_width: Optional[bool] = None
printer_width: Optional[int] = None
write_json: Optional[bool] = None
warn_error: Optional[bool] = None
warn_error_options: Optional[Dict[Literal["include", "exclude"], Any]] = None
Expand Down

0 comments on commit 567094d

Please sign in to comment.