# File lib/pry/command_set.rb, line 20
    def initialize(*imported_sets, &block)
      @commands      = {}
      @helper_module = Module.new

      import(*imported_sets)

      instance_eval(&block) if block
    end