Remove new tap parameter to FormulaAPILoader

This commit is contained in:
Rylan Polster 2023-11-13 14:07:34 -05:00
parent aa316109d9
commit 74996ab32c
No known key found for this signature in database
GPG Key ID: 46A744940CFF4D64

View File

@ -667,8 +667,8 @@ module Formulary
# Load formulae from the API. # Load formulae from the API.
class FormulaAPILoader < FormulaLoader class FormulaAPILoader < FormulaLoader
def initialize(name, tap: CoreTap.instance) def initialize(name)
super name, Formulary.core_path(name), tap: tap super name, Formulary.core_path(name)
end end
def klass(flags:, ignore_errors:) def klass(flags:, ignore_errors:)