commit f27068caad517c52e700477d51343cbebd8d4df0
parent 5ad63c3d983b54fb19928a4ec7fe8001f5f7da52
Author: Dundar Göc <gocdundar@gmail.com>
Date: Tue, 8 Mar 2022 19:51:06 +0100
chore(lgtm): ignore "__eq__ not overridden" warning
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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.