dstandish commented on code in PR #44752:
URL: https://github.com/apache/airflow/pull/44752#discussion_r1913868741
##########
airflow/models/dagbundle.py:
##########
@@ -39,5 +39,7 @@ class DagBundleModel(Base):
latest_version = Column(String(200), nullable=True)
last_refreshed = Column(UtcDateTime, nullable=True)
- def __init__(self, *, name: str):
+ def __init__(self, *, name: str, latest_version=None, last_refreshed=None):
self.name = name
+ self.latest_version = latest_version
Review Comment:
i don't think so; i think i previously did.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]