DEV: avoid using send when we can simply call the method

This commit is contained in:
Sam Saffron 2019-05-07 16:50:45 +10:00
parent 4ff1195537
commit e4abc51866
1 changed files with 1 additions and 1 deletions

View File

@ -9,4 +9,4 @@ module Stylesheet
end
end
::SassC::Script::Functions.public_send(:include, Stylesheet::ScssFunctions)
::SassC::Script::Functions.include(Stylesheet::ScssFunctions)