Skip to content

Commit

Permalink
reformatted after merge conflict
Browse files Browse the repository at this point in the history
Signed-off-by: Mwad22 <[email protected]>
  • Loading branch information
Mwad22 committed Jul 7, 2021
1 parent b951282 commit a68b12b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sdk/python/feast/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,11 @@ def __init__(self, offline_store_name: str, data_source_name: str):
class FeatureNameCollisionError(Exception):
def __init__(self, feature_name_collisions: str):
super().__init__(
f"The following feature name(s) have collisions: {feature_name_collisions}. Set 'full_feature_names' argument in the data retrieval function to True to use the full feature name which is prefixed by the feature view name."
f"The following feature name(s) have collisions: {feature_name_collisions}. Set 'full_feature_names' "
f"argument in the data retrieval function to True to use the full feature name which is prefixed by the feature view name."
)



class FeastOnlineStoreInvalidName(Exception):
def __init__(self, online_store_class_name: str):
Expand Down

0 comments on commit a68b12b

Please sign in to comment.