From 85e25975add78e356f87e931034fd09ddd36bd91 Mon Sep 17 00:00:00 2001 From: jingtaow Date: Tue, 17 Sep 2019 10:39:20 -0400 Subject: [PATCH] Update _helpers.py Fixed a typo in line 46 "las" -> "last". --- storage/google/cloud/storage/_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/google/cloud/storage/_helpers.py b/storage/google/cloud/storage/_helpers.py index 7c649b48cdd0..558a6df6b11e 100644 --- a/storage/google/cloud/storage/_helpers.py +++ b/storage/google/cloud/storage/_helpers.py @@ -43,7 +43,7 @@ def _validate_name(name): if name is None: return - # The first and las characters must be alphanumeric. + # The first and last characters must be alphanumeric. if not all([name[0].isalnum(), name[-1].isalnum()]): raise ValueError("Bucket names must start and end with a number or letter.") return name