Python: Accept fix from extractor change

namely the variable access mentioned in
https://github.com/github/codeql/pull/10171
This commit is contained in:
Rasmus Wriedt Larsen
2022-09-08 17:17:04 +02:00
parent 7014be2047
commit e7a337991a

View File

@@ -16,7 +16,7 @@ def test():
class A(object):
def foo(self):
print("A.foo")
foo() # $ pt=foo MISSING: tt=foo
foo() # $ pt,tt=foo
a = A()
a.foo() # $ pt,tt=A.foo