Skip to content

Commit

Permalink
Removed None as method doesn't return None from filter_null
Browse files Browse the repository at this point in the history
Co-authored-by: Pankaj Singh <[email protected]>
  • Loading branch information
sc250072 and pankajastro authored Jul 3, 2024
1 parent 5b91419 commit 2bb37a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/profiles/teradata/user_pass.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class TeradataUserPasswordProfileMapping(BaseProfileMapping):
}

@property
def profile(self) -> dict[str, Any | None]:
def profile(self) -> dict[str, Any]:
"""Gets profile. The password is stored in an environment variable."""
profile = {
**self.mapped_params,
Expand Down

0 comments on commit 2bb37a1

Please sign in to comment.