Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from typing import Any, Dict, Protocol, Tuple |
||
2 | |||
3 | |||
4 | class ContainersExtension(Protocol): |
||
5 | def stop(self) -> None: |
||
6 | raise NotImplementedError |
||
7 | |||
8 | def update(self, all_tag) -> Tuple[Dict, list[Dict[str, Any]]]: |
||
9 | raise NotImplementedError |
||
10 |