# File lib/puppet/application/pi.rb, line 59
59:     def initialize
60:         @format = Formatter.new(76)
61:         @types = {}
62:         Puppet::Type.loadall
63:         Puppet::Type.eachtype { |type|
64:             next if type.name == :component
65:             @types[type.name] = type
66:         }
67:     end