diff options
author | Jacob Walls <jacobtylerwalls@gmail.com> | 2023-05-14 22:24:49 -0400 |
---|---|---|
committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2023-05-14 22:24:49 -0400 |
commit | 59221837058252bad1344186040a1e475f045c4a (patch) | |
tree | f15bb303782055f2537c9c8e9d53513e50b822f6 /astroid | |
parent | 4757af207d96fa5ee50a453d452e35af083d49a4 (diff) | |
download | astroid-git-performance-regression.tar.gz |
Add disableperformance-regression
Diffstat (limited to 'astroid')
-rw-r--r-- | astroid/inference_tip.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/astroid/inference_tip.py b/astroid/inference_tip.py index b2ac1198..9eda5b4f 100644 --- a/astroid/inference_tip.py +++ b/astroid/inference_tip.py @@ -75,7 +75,8 @@ def _inference_tip_cached(func: InferFn[_NodesT]) -> InferFn[_NodesT]: if len(_cache) > 64: _cache.popitem(last=False) - yield from result + # https://github.com/pylint-dev/pylint/issues/8686 + yield from result # pylint: disable=used-before-assignment return inner |