Skip to content

Commit

Permalink
Normalize single-quote usage.
Browse files Browse the repository at this point in the history
Addresses:
#1217 (comment)
  • Loading branch information
tseaver committed Nov 10, 2015
1 parent 1a21034 commit 14fe52d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions gcloud/storage/acl.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,13 @@ class ACL(object):
_PREDEFINED_QUERY_PARAM = 'predefinedAcl'

_PREDEFINED_ACLS = frozenset([
"private",
"project-private",
"public-read",
"public-read-write",
"authenticated-read",
"bucket-owner-read",
"bucket-owner-full-control",
'private',
'project-private',
'public-read',
'public-read-write',
'authenticated-read',
'bucket-owner-read',
'bucket-owner-full-control',
])
"""See:
https://cloud.google.com/storage/docs/access-control#predefined-acl
Expand Down

0 comments on commit 14fe52d

Please sign in to comment.