• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import torch
2
3from .subpackage_0 import important_string
4
5
6class ImportsIndirectlyFromSubPackage(torch.nn.Module):
7    key = important_string
8
9    def forward(self, inp):
10        return torch.sum(inp)
11