1"""A deep dependency file.""" 2 3def prep_work(): 4 """Does some prep work. Nothing to see here.""" 5 return 1 6 7def inner_rule_impl(ctx): 8 _ignore = [ctx] # @unused 9 return struct() 10