Skip to content

Commit 906dea2

Browse files
committed
Mior update in mutable to change the way keyword argument overrides work.
1 parent 11260ea commit 906dea2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/rdf/mixin/mutable.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def immutable?
4141
def load(url, graph_name: nil, **options)
4242
raise TypeError.new("#{self} is immutable") if immutable?
4343

44-
Reader.open(url, base_uri: url, **options) do |reader|
44+
Reader.open(url, **options.merge(base_uri: url)) do |reader|
4545
if graph_name
4646
statements = []
4747
reader.each_statement do |statement|

0 commit comments

Comments
 (0)