1import torch 2 3from .subpackage_0.subsubpackage_0 import important_string 4 5 6class ImportsDirectlyFromSubSubPackage(torch.nn.Module): 7 key = important_string 8 9 def forward(self, inp): 10 return torch.sum(inp) 11