Fix resolving of names that are not annotations (#1989), fixes #1988

* Fix #1988

* Fix failing code quality test.

* Fix  flake W504 line break after binary operator.  Now as formatted by Black.

* Added test to test/completion/pep0484_basic.py
Addressed feedback from Dave
This commit is contained in:
pyscripter
2024-04-25 12:11:24 +03:00
committed by GitHub
parent f11014fc5d
commit a4574a50d0
2 changed files with 12 additions and 0 deletions

View File

@@ -180,6 +180,11 @@ def argskwargs(*args: int, **kwargs: float):
#? float()
kwargs['']
class Test:
str: str = 'abc'
#? ['upper']
Test.str.upp
class NotCalledClass:
def __init__(self, x):