diff --git a/client/configuration/search_path.py b/client/configuration/search_path.py index 3528df7a444..79c8c884dfb 100644 --- a/client/configuration/search_path.py +++ b/client/configuration/search_path.py @@ -29,11 +29,9 @@ dist_info_in_root: Dict[str, List[str]] = {} -# pyre-fixme[5]: Globally accessible variable `_site_filter` has type `re.Pattern[str]` but no type is specified. -_site_filter = re.compile(r".*-([0-99]\.)*dist-info") +_site_filter = re.compile(r".*-([0-99]\.)*dist-info") # type: re.Pattern -# pyre-fixme[5]: Globally accessible variable `_PYCACHE` has type `re.Pattern[str]` but no type is specified. -_PYCACHE = re.compile("__pycache__(/)*.*") +_PYCACHE = re.compile("__pycache__(/)*.*") # type: re.Pattern def _expand_relative_root(path: str, relative_root: str) -> str: