Files
Roman A 8809497094 BaseTools: Fix type annotations
Fixed type annotations for functions:
- `def _parse_pattern(line: str) -> Tuple[str]:` -> `def _parse_pattern(line: str) -> Tuple[bool, str, str]:`
- `def get_scopes(codeql_enabled: bool) -> Tuple[str]:` -> `def get_scopes(codeql_enabled: bool) -> Tuple[str, ...]:`

Signed-off-by: Roman A <gameromandev@gmail.com>
2025-05-26 09:02:24 +08:00
..