From f27068caad517c52e700477d51343cbebd8d4df0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dundar=20G=C3=B6c?= Date: Tue, 8 Mar 2022 19:51:06 +0100 Subject: [PATCH] chore(lgtm): ignore "__eq__ not overridden" warning --- src/clint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clint.py b/src/clint.py index 37b44920af..10f33d22e2 100755 --- a/src/clint.py +++ b/src/clint.py @@ -369,7 +369,7 @@ def Search(pattern, s): return _regexp_compile_cache[pattern].search(s) -class _IncludeState(dict): +class _IncludeState(dict): # lgtm [py/missing-equals] """Tracks line numbers for includes, and the order in which includes appear.