# File lib/rubyrep/scan_progress_printers/progress_bar.rb, line 30
      def initialize(max_steps, session, left_table, right_table)
        @use_ansi = session.configuration.options_for_table(left_table)[:use_ansi]
        @max_steps, @current_steps = max_steps, 0
        @steps_per_marker = @max_steps.to_f / max_markers
        @current_markers, @current_percentage = 0, 0
      end