Skip to content

Commit

Permalink
[#3867] Turn on partial parsing by default
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  e0d2b02
  • Loading branch information
gshank authored and iknox-fa committed Feb 8, 2022
1 parent 5ad6b09 commit e36e214
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/dbt/contracts/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ class BaseArtifactMetadata(dbtClassMixin):

def __post_serialize__(self, dct):
dct = super().__post_serialize__(dct)
if dct['generated_at'] and dct['generated_at'].endswith('+00:00'):
dct['generated_at'] = dct['generated_at'].replace('+00:00', '') + "Z"
if dct["generated_at"] and dct["generated_at"].endswith("+00:00"):
dct["generated_at"] = dct["generated_at"].replace("+00:00", "") + "Z"
return dct


Expand Down

0 comments on commit e36e214

Please sign in to comment.