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
#1102 provided a way to split # type: comments over multiple lines for functions, however, there doesn't seem to be such a thing to split markup for inline attributes. For example:
importcollectionsfromtypingimportDefaultDict, Listdeftest(pools):
really_long_attribute=collections.defaultdict(list) # type: DefaultDict[str, List[str]]forpoolinpools:
pass# meaningful stuff in here