mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
13 lines
332 B
Ruby
13 lines
332 B
Ruby
# frozen_string_literal: true
|
|
|
|
module VirtualAssembly
|
|
module Semantizer
|
|
module SemanticObject
|
|
# Override PP method, which is used in pretty_inspect for rails console and rspec
|
|
def pretty_print_instance_variables
|
|
instance_variables.reject{ |var| var == :@semanticPropertiesMap }
|
|
end
|
|
end
|
|
end
|
|
end
|