lib/tapioca/dsl/compilers/active_storage.rb in tapioca-0.10.1 vs lib/tapioca/dsl/compilers/active_storage.rb in tapioca-0.10.2

- old
+ new

@@ -61,15 +61,15 @@ constant.reflect_on_all_attachments.each do |reflection| type = type_of(reflection) name = reflection.name.to_s scope.create_method( name, - return_type: type + return_type: type, ) scope.create_method( "#{name}=", parameters: [create_param("attachable", type: "T.untyped")], - return_type: "T.untyped" + return_type: "T.untyped", ) end end end