Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4564857

Browse files
authored
Merge branch 'master' into remove-talent
2 parents 65b2ec8 + 85ea173 commit 4564857

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
/firestore/**/*.py @GoogleCloudPlatform/firestore-dpe @GoogleCloudPlatform/python-samples-owners
3939
/functions/**/*.py @ace-n @grant @GoogleCloudPlatform/python-samples-owners
4040
/healthcare/**/*.py @noerog @GoogleCloudPlatform/python-samples-owners
41-
/iam/**/*.py @melaniedejong @GoogleCloudPlatform/python-samples-owners
41+
/iam/**/*.py @GoogleCloudPlatform/python-samples-owners
4242
/iap/**/*.py @GoogleCloudPlatform/python-samples-owners
4343
/iot/**/*.py @gguuss @GoogleCloudPlatform/python-samples-owners
4444
/jobs/**/*.py @GoogleCloudPlatform/python-samples-owners

.github/blunderbuss.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,6 @@ assign_issues_by:
6969
- 'api: healthcare'
7070
to:
7171
- noerog
72-
- labels:
73-
- 'api: iam'
74-
to:
75-
- melaniedejong
7672
- labels:
7773
- 'api: logging'
7874
to:

bigquery/pandas-gbq-migration/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ google-cloud-bigquery==1.28.0
22
google-cloud-bigquery-storage==1.1.0
33
pandas==0.25.3; python_version > '3.0'
44
pandas==0.24.2; python_version < '3.0'
5-
pandas-gbq==0.13.3
5+
pandas-gbq==0.14.0
66
pyarrow==1.0.1
77
grpcio==1.32.0

iam/api-client/custom_roles_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ def test_query_testable_permissions(capsys):
7171
"//cloudresourcemanager.googleapis.com/projects/" + GCLOUD_PROJECT
7272
)
7373
out, _ = capsys.readouterr()
74-
assert "apigee" in out
74+
# Just make sure the sample printed out multiple permissions.
75+
assert "\n" in out
7576

7677

7778
def test_get_role(capsys):

iam/api-client/service_accounts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,12 @@ def main():
196196
# Disable
197197
rename_parser = subparsers.add_parser(
198198
'disable', help=disable_service_account.__doc__)
199-
list_parser.addargument('email')
199+
list_parser.add_argument('email')
200200

201201
# Enable
202202
rename_parser = subparsers.add_parser(
203203
'enable', help=enable_service_account.__doc__)
204-
list_parser.addargument('email')
204+
list_parser.add_argument('email')
205205

206206
# Delete
207207
delete_parser = subparsers.add_parser(

0 commit comments

Comments
 (0)