summaryrefslogtreecommitdiff
path: root/lib/utils/shims/feature.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utils/shims/feature.rb')
-rw-r--r--lib/utils/shims/feature.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/shims/feature.rb b/lib/utils/shims/feature.rb
index f49bb39..9afa5c2 100644
--- a/lib/utils/shims/feature.rb
+++ b/lib/utils/shims/feature.rb
@@ -66,7 +66,7 @@ module OpenTox
bad_request_error "rdf type of feature '#{@uri}' not set" unless self[RDF.type]
if self[RDF.type].include?(OT.NominalFeature)
"classification"
- elsif [RDF.type].to_a.flatten.include?(OT.NumericFeature)
+ elsif self[RDF.type].include?(OT.NumericFeature)
"regression"
else
"unknown"