Skip to content

Commit 329170b

Browse files
committed
Replace types string with str.
Uses command: ag -l 'type ([^:]+): string' | \ xargs gsed -r -i.bak -e 's/type ([^:]+): string/type \1: str/g' Note: [-r for gsed (GNU sed) is needed for group matching](http://superuser.com/a/336819/125262).
1 parent 09721a3 commit 329170b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/google-cloud-bigtable/google/cloud/bigtable

packages/google-cloud-bigtable/google/cloud/bigtable/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def instance(self, instance_id, location=_EXISTING_INSTANCE_LOCATION_ID,
317317
:type instance_id: str
318318
:param instance_id: The ID of the instance.
319319
320-
:type location: string
320+
:type location: str
321321
:param location: location name, in form
322322
``projects/<project>/locations/<location>``; used to
323323
set up the instance's cluster.

0 commit comments

Comments
 (0)