diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-08 19:51:06 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-09 09:29:57 +0100 |
commit | f27068caad517c52e700477d51343cbebd8d4df0 (patch) | |
tree | 241bc74e3d1ec9834cfac3c850cfcc88d65e6671 /src/clint.py | |
parent | 5ad63c3d983b54fb19928a4ec7fe8001f5f7da52 (diff) | |
download | rneovim-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-x | src/clint.py | 2 |
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. |