Skip to content

Commit c55dc1b

Browse files
committed
Fix warning reported by RuboCop
#ignore
1 parent 56b5aa0 commit c55dc1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Support/lib/support.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def self.edit
152152
# The function returns a string containing the location of the configuration
153153
# file.
154154
def self.location
155-
(File.exist? CONFIG_FILE_USER) ? CONFIG_FILE_USER : CONFIG_FILE
155+
File.exist?(CONFIG_FILE_USER) ? CONFIG_FILE_USER : CONFIG_FILE
156156
end
157157
end
158158

0 commit comments

Comments
 (0)