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
deff():
defg():
importabcreturnabc.xyzreturng# this doesn't need the importsh=f()
# this needs the importsk=h()
I don't think g is on the surface, since it is not accessible except inside f. But something needs to own the imports, since they may be real requirements. But those imports may be needed depending on if the returned function is called.
Currently we'd make a symbol modeule.f.g, which doesn't seem correct since f doesn't have attrs.
The text was updated successfully, but these errors were encountered:
What do we do in this instance?
I don't think
g
is on the surface, since it is not accessible except insidef
. But something needs to own the imports, since they may be real requirements. But those imports may be needed depending on if the returned function is called.Currently we'd make a symbol
modeule.f.g
, which doesn't seem correct sincef
doesn't have attrs.The text was updated successfully, but these errors were encountered: