From 1ca315538f2f9da6c7b86c4c46e76d454c1ec4b9 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Wed, 22 Mar 2023 17:59:32 +0300 Subject: gh-102033: Fix syntax error in `Tools/c-analyzer` (GH-102066) The easiest way to format strings with `{}` meaningful chars is via `%`. --- Tools/c-analyzer/c_common/iterutil.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Tools/c-analyzer/c_common/iterutil.py') diff --git a/Tools/c-analyzer/c_common/iterutil.py b/Tools/c-analyzer/c_common/iterutil.py index 6ded105304..dda3dd57c1 100644 --- a/Tools/c-analyzer/c_common/iterutil.py +++ b/Tools/c-analyzer/c_common/iterutil.py @@ -1,7 +1,3 @@ - -_NOT_SET = object() - - def peek_and_iter(items): if not items: return None, None -- cgit v1.2.1