Return a mapping data from this distribution.
(self)
| 674 | return about_data |
| 675 | |
| 676 | def to_dict(self): |
| 677 | """ |
| 678 | Return a mapping data from this distribution. |
| 679 | """ |
| 680 | return {k: v for k, v in attr.asdict(self).items() if v} |
| 681 | |
| 682 | def save_about_and_notice_files(self, dest_dir=THIRDPARTY_DIR): |
| 683 | """ |
no outgoing calls
no test coverage detected