Invalidate the parsed configuration cache. Call this method after making changes to the underlying configparser.
(self)
| 1415 | return result |
| 1416 | |
| 1417 | def invalidate_cache(self) -> None: |
| 1418 | """ |
| 1419 | Invalidate the parsed configuration cache. |
| 1420 | Call this method after making changes to the underlying configparser. |
| 1421 | """ |
| 1422 | self._parsed_config = None |
| 1423 | |
| 1424 | def _is_url(self, value: str) -> bool: |
| 1425 | """Check if a value is already a URL (not a shorthand name).""" |
no outgoing calls
no test coverage detected