Skip to content

Commit 1095188

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 947059a commit 1095188

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/google-cloud-vision/google/cloud/vision/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Connection(base_connection.JSONConnection):
2929
:type http: :class:`httplib2.Http` or class that defines ``request()``.
3030
:param http: (Optional) HTTP object to make requests.
3131
32-
:type api_base_url: string
32+
:type api_base_url: str
3333
:param api_base_url: The base of the API call URL. Defaults to the value
3434
:attr:`Connection.API_BASE_URL`.
3535
"""

0 commit comments

Comments
 (0)