Browse Source

[MNT] modify the __repr__ func of Specification

tags/v0.3.2
Peng Tan 3 years ago
parent
commit
e9dcf3b3b1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      learnware/specification/base.py

+ 1
- 1
learnware/specification/base.py View File

@@ -27,7 +27,7 @@ class Specification:
self.stat_spec = {} if stat_spec is None else stat_spec

def __repr__(self) -> str:
return "{}(Semantic Spec: {}, {})".format(
return "{}(Semantic Specification: {}, Statistical Specification: {})".format(
type(self).__name__, type(self.semantic_spec).__name__, self.stat_spec
)



Loading…
Cancel
Save