Information about a zip URL found in platformio.ini.
| 87 | |
| 88 | @dataclass |
| 89 | class ZipUrlInfo: |
| 90 | """Information about a zip URL found in platformio.ini.""" |
| 91 | |
| 92 | url: str |
| 93 | section_name: str |
| 94 | option_name: str |
| 95 | |
| 96 | |
| 97 | @dataclass |
no outgoing calls
no test coverage detected