Skip to content

Commit

Permalink
add type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
jordivandooren committed Sep 19, 2024
1 parent a05660e commit 346421b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def __contains__(self, name) -> bool:
# cli args and flags, which is more complete than just the cli args.
# If new args are added that are false by default (particularly in the
# global options) they should be added to the 'default_false_keys' list.
def args_to_dict(args):
def args_to_dict(args) -> dict:
var_args = vars(args).copy()
# update the args with the flags, which could also come from environment
# variables or project_flags
Expand Down

0 comments on commit 346421b

Please sign in to comment.