Skip to content

Commit

Permalink
Fix MLMD build with Python 3.11 on macos.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 598971583
  • Loading branch information
XinranTang authored and tfx-copybara committed Jan 16, 2024
1 parent bc0d28e commit f737be0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ml_metadata/metadata_store/metadata_store.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class MetadataStore : public MetadataStoreServiceInterface {
// updated only when the request type is backward compatible for the already
// stored instances.
//
// Backwards compatibility is violated iff:
// Backwards compatibility is violated if:
//
// a) there is a property where the request type and stored_type have
// different value type (e.g., int vs. string)
Expand Down Expand Up @@ -424,8 +424,8 @@ class MetadataStore : public MetadataStoreServiceInterface {
GetContextsByTypeResponse* response) override;

// Gets the context of a given type and name. If no context found, it returns
// OK and empty response. If more than one contexts matchs the type and name,
// the query execution fails.
// OK and empty response. If multiple contexts are found with the same type
// and name, the query execution fails.
absl::Status GetContextByTypeAndName(
const GetContextByTypeAndNameRequest& request,
GetContextByTypeAndNameResponse* response) override;
Expand Down

0 comments on commit f737be0

Please sign in to comment.