Return the value of an Entry for the `tag` number or None.
(self, tag)
| 493 | return self.get_entry_value(item) |
| 494 | |
| 495 | def get_entry_value(self, tag): |
| 496 | """ |
| 497 | Return the value of an Entry for the `tag` number or None. |
| 498 | """ |
| 499 | entry = self.entries_by_tag.get(tag) |
| 500 | if not entry or not entry.value: |
| 501 | return |
| 502 | return entry.value |
| 503 | |
| 504 | @property |
| 505 | def name(self): |
no test coverage detected