Skip to content
Snippets Groups Projects
Unverified Commit 995cc615 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Apply suggestions from code review

parent 402213bf
No related branches found
No related tags found
No related merge requests found
...@@ -187,7 +187,7 @@ class PushRuleEvaluatorForEvent: ...@@ -187,7 +187,7 @@ class PushRuleEvaluatorForEvent:
# Caches (string, is_glob, word_boundary) -> regex for push. See _glob_matches # Caches (string, is_glob, word_boundary) -> regex for push. See _glob_matches
regex_cache = LruCache( regex_cache = LruCache(
50000, "regex_push_cache" 50000, "regex_push_cache"
) # type: LruCache[Tuple[str, bool, bool],Pattern] ) # type: LruCache[Tuple[str, bool, bool], Pattern]
def _glob_matches(glob: str, value: str, word_boundary: bool = False) -> bool: def _glob_matches(glob: str, value: str, word_boundary: bool = False) -> bool:
......
...@@ -283,7 +283,7 @@ class LruCache(Generic[KT, VT]): ...@@ -283,7 +283,7 @@ class LruCache(Generic[KT, VT]):
return value return value
@overload @overload
def cache_pop(key: KT, default: Literal[None] = None) -> Union[None, VT]: def cache_pop(key: KT, default: Literal[None] = None) -> Optional[VT]:
... ...
@overload @overload
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment