aboutsummaryrefslogtreecommitdiff
path: root/src/clint.py
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-03-10 15:01:02 +0800
committerGitHub <noreply@github.com>2022-03-10 15:01:02 +0800
commit9e9322b222566c0f92bb6df034d9b316317c81d5 (patch)
tree8dc2885e2b65ac1eb4e973bc44face735b5c013f /src/clint.py
parenta7b1c8893c602196541e94b8b24c4c70c32c25b0 (diff)
parent05f643f9d235b0db881acf94ce05ad3359ffb058 (diff)
downloadrneovim-9e9322b222566c0f92bb6df034d9b316317c81d5.tar.gz
rneovim-9e9322b222566c0f92bb6df034d9b316317c81d5.tar.bz2
rneovim-9e9322b222566c0f92bb6df034d9b316317c81d5.zip
Merge pull request #17653 from dundargoc/chore/lgtm
fix lgtm warnings
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.