fix return code style

This commit is contained in:
Alexander Popov 2022-07-31 02:25:56 +03:00
parent 70a2e47727
commit d08349f800
Signed by: iiiypuk
GPG Key ID: D8C9B59A9F04A70C
1 changed files with 2 additions and 2 deletions

View File

@ -21,11 +21,11 @@ module Pmng::Functions
end
def size
return @size
@size
end
def outdated
return @outdated
@outdated
end
end
end