-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
addressed in next versionIssue is fixed and will appear in next published versionIssue is fixed and will appear in next published versionbugSomething isn't workingSomething isn't working
Description
In the following code sample, the keywords used in the last function call are reported as potentially unbound.
import json
def foo() -> tuple[str, str]: ...
try:
a, b = foo()
c = "".join(a)
e = json.loads("")
except:
e = {}
f = e.get("", None)
g = dict(f=f, c=c) # f is reported as UnboundReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
addressed in next versionIssue is fixed and will appear in next published versionIssue is fixed and will appear in next published versionbugSomething isn't workingSomething isn't working