Return a serialized headers composed only of native Python objects suitable for use in outputs.
(self)
| 800 | return files_count |
| 801 | |
| 802 | def get_headers(self): |
| 803 | """ |
| 804 | Return a serialized headers composed only of native Python objects |
| 805 | suitable for use in outputs. |
| 806 | """ |
| 807 | return [le.to_dict() for le in (self.headers or [])] |
| 808 | |
| 809 | def exists(self, resource): |
| 810 | """ |
no test coverage detected