Skip to content

Commit 17d4f04

Browse files
authored
Fix linter in print_exported_headers.py (#8808)
1 parent 7535a54 commit 17d4f04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/print_exported_headers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def query(buck2: str, target: str, attribute: str) -> str:
3939

4040

4141
# Cache to store results for exported headers per target.
42-
_exported_headers_cache = {}
42+
_exported_headers_cache: dict[str, Set[str]] = {}
4343

4444

4545
def exported_headers(buck2: str, target: str) -> Set[str]:

0 commit comments

Comments
 (0)