Fixed a lot of linter warnings
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-12-11 13:08:46 -05:00
parent 34741691ed
commit 516f125ea7
14 changed files with 76 additions and 34 deletions
+5 -2
View File
@@ -1,9 +1,12 @@
# frozen_string_literal: true
# Result - database model for benchmark results
class Result < Sequel::Model
many_to_one :test
def formatted_score()
return self.score
def formatted_score
return @score
end
end