Skip to content

Commit b154f14

Browse files
committed
fix missing fields in op feed response
1 parent 2a4e1b9 commit b154f14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

functions-python/operations_api/src/feeds_operations/impl/models/operation_feed_impl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from feeds_gen.models.operation_feed import OperationFeed
22
from shared.database_gen.sqlacodegen_models import Feed
3-
from shared.db_models.basic_feed_impl import BaseFeedImpl
3+
from shared.db_models.feed_impl import FeedImpl
44

55

6-
class OperationFeedImpl(BaseFeedImpl, OperationFeed):
6+
class OperationFeedImpl(FeedImpl, OperationFeed):
77
"""Base implementation of the feeds models."""
88

99
class Config:

0 commit comments

Comments
 (0)