Browse Source

improve keywordarg tostring function

tags/v1.0.0
buxue 5 years ago
parent
commit
1c28300d24
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/core/ir/value.cc

+ 1
- 1
mindspore/core/ir/value.cc View File

@@ -266,7 +266,7 @@ std::string KeywordArg::ToString() const {
buffer << "KeywordArg[";
buffer << "key : " << key_;
MS_EXCEPTION_IF_NULL(value_);
buffer << "value : " << value_->ToString();
buffer << ", value : " << value_->ToString();
buffer << "]";
return buffer.str();
}


Loading…
Cancel
Save