Rubocop autocorrections

This commit is contained in:
Bertocq
2017-07-25 12:48:23 +02:00
parent 58331e6425
commit 7d406cae76
12 changed files with 36 additions and 31 deletions

View File

@@ -28,7 +28,9 @@ class LocalCensus
end
def district_code
@body.district_code rescue nil
@body.district_code
rescue
nil
end
def gender
@@ -43,7 +45,9 @@ class LocalCensus
end
def name
"#{@body.nombre} #{@body.apellido1}" rescue nil
"#{@body.nombre} #{@body.apellido1}"
rescue
nil
end
private