Skip to content

Commit

Permalink
fix agate typing
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelleArk committed Apr 4, 2024
1 parent 05c7149 commit 154e066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/base/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ def _create_freshness_response(

return freshness

def _parse_freshness_row(self, row: agate.Row, table: agate.Table) -> Tuple[Any, FreshnessResponse]:
def _parse_freshness_row(self, row: "agate.Row", table: "agate.Table") -> Tuple[Any, FreshnessResponse]:
try:
last_modified_val = get_column_value_uncased("last_modified", row)
snapshotted_at_val = get_column_value_uncased("snapshotted_at", row)
Expand Down

0 comments on commit 154e066

Please sign in to comment.