()
| 124 | |
| 125 | |
| 126 | def _website_node() -> dict: |
| 127 | return { |
| 128 | "@type": "WebSite", |
| 129 | "@id": WEBSITE_ID, |
| 130 | "name": "Awesome Python", |
| 131 | "url": SITE_URL, |
| 132 | "inLanguage": "en", |
| 133 | "sameAs": "https://github.com/vinta/awesome-python", |
| 134 | } |
| 135 | |
| 136 | |
| 137 | def _item_list_payload(entries: Sequence[TemplateEntry]) -> dict: |
no outgoing calls
no test coverage detected