aboutsummaryrefslogtreecommitdiff
path: root/src/clint.py
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-03-08 19:51:06 +0100
committerDundar Göc <gocdundar@gmail.com>2022-03-09 09:29:57 +0100
commitf27068caad517c52e700477d51343cbebd8d4df0 (patch)
tree241bc74e3d1ec9834cfac3c850cfcc88d65e6671 /src/clint.py
parent5ad63c3d983b54fb19928a4ec7fe8001f5f7da52 (diff)
downloadrneovim-f27068caad517c52e700477d51343cbebd8d4df0.tar.gz
rneovim-f27068caad517c52e700477d51343cbebd8d4df0.tar.bz2
rneovim-f27068caad517c52e700477d51343cbebd8d4df0.zip
chore(lgtm): ignore "__eq__ not overridden" warning
Diffstat (limited to 'src/clint.py')
-rwxr-xr-xsrc/clint.py2
1 files changed, 1 insertions, 1 deletions
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.