From 34f498571f6e46c3294dddc9db4fd7578bf10402 Mon Sep 17 00:00:00 2001 From: Joerg Henrichs Date: Thu, 9 Jan 2025 15:57:47 +1100 Subject: [PATCH] Added missing type hint. --- source/fab/parse/c.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fab/parse/c.py b/source/fab/parse/c.py index 7919d0c8..19ef97f4 100644 --- a/source/fab/parse/c.py +++ b/source/fab/parse/c.py @@ -52,7 +52,7 @@ def __init__(self, config: BuildConfig): # runtime self._config = config - self._include_region = [] + self._include_region: List[Tuple[int,str]] = [] # todo: simplifiy by passing in the file path instead of the analysed tokens? def _locate_include_regions(self, trans_unit) -> None: