Return value of IFD entry having tag matching `tag_code`, or `default` if no matching tag found.
(self, tag_code, default=None)
| 140 | return cls(entries) |
| 141 | |
| 142 | def get(self, tag_code, default=None): |
| 143 | """Return value of IFD entry having tag matching `tag_code`, or `default` if no |
| 144 | matching tag found.""" |
| 145 | return self._entries.get(tag_code, default) |
| 146 | |
| 147 | |
| 148 | class _IfdParser: |
no outgoing calls
no test coverage detected