Return a normalized numeric score as a string for this scoring system given a ``scoring_elements`` string value.
(self, scoring_elements: str)
| 32 | notes: str = "" |
| 33 | |
| 34 | def compute(self, scoring_elements: str) -> str: |
| 35 | """ |
| 36 | Return a normalized numeric score as a string for this scoring system |
| 37 | given a ``scoring_elements`` string value. |
| 38 | """ |
| 39 | return NotImplementedError |
| 40 | |
| 41 | def get(self, scoring_elements: str): |
| 42 | return NotImplementedError |
no outgoing calls
no test coverage detected