Python: Fix variable access from extractor-change

These changes are from internal PR.
This commit is contained in:
Rasmus Wriedt Larsen
2022-08-25 12:04:46 +02:00
parent 985e87ccde
commit e979dffc08
5 changed files with 7 additions and 8 deletions

View File

@@ -172,11 +172,11 @@ class MyClass(object):
# Since we define some_value method on the class, flow for some_value gets blocked
# into the methods
def some_value(self):
print(some_value) # $ MISSING: tracked
print(some_value) # $ tracked
print(other_value) # $ tracked
def other_name(self):
print(some_value) # $ MISSING: tracked
print(some_value) # $ tracked
print(other_value) # $ tracked
def with_global_modifier(self):