From b09ba80170cbc3e1a00a9bff6cd1c7a805364a9f Mon Sep 17 00:00:00 2001 From: Roman A <121314722+GameRoMan@users.noreply.github.com> Date: Thu, 8 May 2025 19:13:57 +0100 Subject: [PATCH] Fix type annotations --- src/clusterfuzz/stacktraces/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clusterfuzz/stacktraces/__init__.py b/src/clusterfuzz/stacktraces/__init__.py index ef51ed13abf..dc7a95ed49e 100644 --- a/src/clusterfuzz/stacktraces/__init__.py +++ b/src/clusterfuzz/stacktraces/__init__.py @@ -178,7 +178,7 @@ def update_state_on_match(self, state_from_group=None, address_filter=lambda s: s, type_filter=lambda s: s, - reset=False) -> re.Match or None: + reset=False) -> re.Match | None: """Update the specified parts of the state if we have a match.""" match = compiled_regex.match(line)