Skip to content

Commit

Permalink
Fix grammatical error in Variable.get docstring (#20837)
Browse files Browse the repository at this point in the history
Co-authored-by: PApostol <[email protected]>
  • Loading branch information
anna-hope and PApostol authored Jan 12, 2022
1 parent aebb7ca commit fe5aba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/models/variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def get(
Gets a value for an Airflow Variable Key
:param key: Variable Key
:param default_var: Default value of the Variable if the Variable doesn't exists
:param default_var: Default value of the Variable if the Variable doesn't exist
:param deserialize_json: Deserialize the value to a Python dict
"""
var_val = Variable.get_variable_from_secrets(key=key)
Expand Down

1 comment on commit fe5aba2

@davidnateberg
Copy link

@davidnateberg davidnateberg commented on fe5aba2 Jan 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now this is my kind of commit, gotta fill in those green squares somehow

Please sign in to comment.