Remove whitespaces

This commit is contained in:
Glenn Y. Rolland 2019-12-30 01:55:17 +01:00
parent 12df4f909c
commit 76a9316e5c

View file

@ -1,3 +1,4 @@
# frozen_string_literal: true
module Noozoid module Noozoid
module Config module Config
@ -14,7 +15,7 @@ module Noozoid
[:node_none, ''], [:node_none, ''],
[:main_help, 'Show this help'], [:main_help, 'Show this help'],
[:main_quit, 'Exit program'] [:main_quit, 'Exit program']
] ].freeze
DEFAULT_KEYS = { DEFAULT_KEYS = {
nav_parent: 'LEFT', nav_parent: 'LEFT',
@ -29,6 +30,6 @@ module Noozoid
node_none: '', node_none: '',
main_quit: 'q', main_quit: 'q',
main_help: '?' main_help: '?'
} }.freeze
end end
end end