Skip to content

Commit c939467

Browse files
committed
Lint
1 parent ea0b652 commit c939467

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/azure_blob/client.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def get_blob_properties(key, options = {})
155155
# This can be used to see if the container exist or obtain metadata.
156156
def get_container_properties(options = {})
157157
uri = generate_uri(container)
158-
uri.query = URI.encode_www_form(restype: 'container')
158+
uri.query = URI.encode_www_form(restype: "container")
159159
response = Http.new(uri, signer:, raise_on_error: false).head
160160

161161
Container.new(response)
@@ -166,7 +166,7 @@ def get_container_properties(options = {})
166166
# Calls to {Create Container}[https://learn.microsoft.com/en-us/rest/api/storageservices/create-container]
167167
def create_container(options = {})
168168
uri = generate_uri(container)
169-
uri.query = URI.encode_www_form(restype: 'container')
169+
uri.query = URI.encode_www_form(restype: "container")
170170
response = Http.new(uri, signer:).put
171171
end
172172

@@ -175,7 +175,7 @@ def create_container(options = {})
175175
# Calls to {Delete Container}[https://learn.microsoft.com/en-us/rest/api/storageservices/delete-container]
176176
def delete_container(options = {})
177177
uri = generate_uri(container)
178-
uri.query = URI.encode_www_form(restype: 'container')
178+
uri.query = URI.encode_www_form(restype: "container")
179179
response = Http.new(uri, signer:).delete
180180
end
181181

0 commit comments

Comments
 (0)