You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mypy.nodes.get_member_expr_fullname formats a MemberExpr into a dotted-name string if possible, or returns None if formatting the MemberExpr in that way is not possible (i.e. it contains expressions other than names and attribute accesses).
Sometimes when a dotted-name representation is not possible, it will return a string with an embedded "None" (e.g. "None.a.b.c") instead of returning None.
Bug Report
mypy.nodes.get_member_expr_fullname
formats aMemberExpr
into a dotted-name string if possible, or returnsNone
if formatting theMemberExpr
in that way is not possible (i.e. it contains expressions other than names and attribute accesses).Sometimes when a dotted-name representation is not possible, it will return a string with an embedded
"None"
(e.g."None.a.b.c"
) instead of returningNone
.Encountered when reviewing #17178
To Reproduce
Your Environment
mypy.ini
(and other config files): N/AThe text was updated successfully, but these errors were encountered: