Skip to content

Commit 3bd6527

Browse files
committed
py: Inline expectation should have space before $
1 parent d2225fb commit 3bd6527

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/ql/test/library-tests/dataflow/typetracking/attribute_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def getattr_indirect_read():
107107
attr = "foo"
108108
x = SomeClass() # $ tracked=foo
109109
x.foo = tracked # $ tracked tracked=foo
110-
y = getattr(x, attr) #$tracked tracked=foo
110+
y = getattr(x, attr) # $ tracked tracked=foo
111111
do_stuff(y) # $ tracked
112112

113113
# Via `__dict__` -- not currently implemented.

0 commit comments

Comments
 (0)