Get raw value from the dict. It acts the same as dict.__getitem__(k). Args: key (_KT): Key in dict. Returns: _VT: Value to the key.
(self, key: _KT)
| 466 | return value |
| 467 | |
| 468 | def get_raw_value(self, key: _KT) -> _VT: |
| 469 | """Get raw value from the dict. It acts the same as |
| 470 | dict.__getitem__(k). |
| 471 | |
| 472 | Args: |
| 473 | key (_KT): |
| 474 | Key in dict. |
| 475 | |
| 476 | Returns: |
| 477 | _VT: |
| 478 | Value to the key. |
| 479 | """ |
| 480 | value = super().__getitem__(key) |
| 481 | return value |
| 482 | |
| 483 | def get_value_in_shape(self, |
| 484 | key: _KT, |
no test coverage detected