chore: update format for enum in question.rb

This commit is contained in:
Nelson Jovel 2024-11-20 15:34:24 -08:00
parent 8946971cd3
commit e62d909896

View file

@ -28,7 +28,7 @@ module Legacy
enum target_group: %i[unknown for_students for_teachers for_parents]
def source
target_group.gsub('for_', '')
target_group.gsub("for_", "")
end
def options
@ -69,7 +69,7 @@ module Legacy
end
def normalized_text
text.gsub('[science/math/English/social studies]', '')
text.gsub("[science/math/English/social studies]", "")
end
end
end