Skip to content

Commit

Permalink
fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
alangenfeld committed Mar 7, 2022
1 parent c4fe9a6 commit 81fdc76
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -738,12 +738,13 @@ def get_latest_materialization_events(
)
)
.group_by(SqlEventLogStorageTable.c.asset_key)
.alias('latest_materializations')
.alias("latest_materializations")
)
backcompat_query = db.select(
[SqlEventLogStorageTable.c.asset_key, SqlEventLogStorageTable.c.event]
).select_from(
latest_event_subquery.join(SqlEventLogStorageTable,
latest_event_subquery.join(
SqlEventLogStorageTable,
db.and_(
SqlEventLogStorageTable.c.asset_key == latest_event_subquery.c.asset_key,
SqlEventLogStorageTable.c.timestamp == latest_event_subquery.c.timestamp,
Expand Down

0 comments on commit 81fdc76

Please sign in to comment.