Fix a weird AttributeError, fixes #1765

This commit is contained in:
Dave Halter
2022-11-13 18:26:01 +01:00
parent 85780111e0
commit 6e5db3f479
2 changed files with 2 additions and 1 deletions

View File

@@ -650,6 +650,7 @@ def test_cursor_after_signature(Script, column):
('abs(chr ( \nclass y: pass', 1, 8, 'abs', 0),
('abs(chr ( \nclass y: pass', 1, 9, 'abs', 0),
('abs(chr ( \nclass y: pass', 1, 10, 'chr', 0),
('abs(foo.bar=3)', 1, 13, 'abs', 0),
]
)
def test_base_signatures(Script, code, line, column, name, index):