Skip to content

Commit ec876d6

Browse files
committed
Fix error string
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent c642b42 commit ec876d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/python/feast/errors.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ def __init__(self, online_store_class_name: str):
8888
class FeastStoreConfigInvalidName(Exception):
8989
def __init__(self, online_store_config_class_name: str, store_type="Online"):
9090
super().__init__(
91-
f"Online Store Config Class '{online_store_config_class_name}' should end with the string `{store_type}StoreConfig`.'"
91+
f"Online Store Config Class '{online_store_config_class_name}' "
92+
f"should end with the string `{store_type}Config`.'"
9293
)
9394

9495

0 commit comments

Comments
 (0)